You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select with your mouse starting from somewhere above and outside the code editor to somewhere in the web page's scrollbar to the right of the code editor.
You should see the web page scroll horizontally.
Using horizontal scroll bar, scroll the web page all the way back to the left.
note the 'clipping' of the web page on the left.
This is the result of the <textarea> going beyond the right-hand side of the <pre><code>.
The <textarea> has a left margin of 3.8em so the overlapping with the <code> is correct. 3.8em is the width of the line-number <span>.
However, the margin moves the right-hand side of the <textarea> beyond the end of the<pre><code> (and possibly past the left side of the entire web page?), resulting in this behavior.
new tom, alice, bob in {
// Start the game by sending a message to Alice
alice!("How to program: Change stuff and see what happens.")
|// Concurrently, Alice listens for the messagefor (message <- alice) {
// When she receives the message she'll pass it on to Bob
bob!("Message to bob from Alice")
}
|// Concurrently, Bob will listens for the messagefor (message <- bob) {
// Bob is the last player, so he'll announce the message
tom!( "This is Tom's message")
|
alice!(*message)
}
|for (message <- alice)
{
tom!(*message ++" from alice via tom")
}
}
container
is out of placetextarea
is completely out of sync with thepre
elementEverything seems to work fine in Chromium browsers such as Chrome, Edge etc but I observed the above errors in Firefox
The text was updated successfully, but these errors were encountered: