Sandbox the console separately?
Consider the below Snippet:console.log("Hello.");console.log("OMG. See how big?");div { border: 1px dashed #f90; background: #fc6; line-height: 5; text-align: center;}Because of the CSS I used, the...
View ArticleAnswer by jpmc26 for Sandbox the console separately?
I don't think this is worth spending time implementing. You shouldn't be globally assigning a style to div in professional code, anyway. As I understand it (as a developer not focused on HTML/CSS/JS),...
View ArticleAnswer by Cerbrus for Sandbox the console separately?
Don't change this.I regularly see users leverage this to change the console output:console.log("Gee,\n\nthis\n\nis\n\na\n\nlo\no\no\no\no\no\no\nng\n\nstring!");.as-console-wrapper { max-height: 100%...
View ArticleAnswer by Ajedi32 for Sandbox the console separately?
Yes, this should be fixed. CSS leaking into the console isn't the only issue; there are a lot of potential problems that can be caused by the fact that the console isn't isolated from the rest of the...
View Article