mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
[html] Sytax Highlighting is way off with new line after event handler (#162319)
This commit is contained in:
committed by
GitHub
parent
c4359c2dab
commit
320f338681
@@ -122,7 +122,7 @@ suite('HTML Embedded Support', () => {
|
||||
|
||||
assertEmbeddedLanguageContent('<div onKeyUp="foo()" onkeydown="bar()"/>', 'javascript', ' foo(); bar(); ');
|
||||
assertEmbeddedLanguageContent('<div onKeyUp="return"/>', 'javascript', ' return; ');
|
||||
|
||||
assertEmbeddedLanguageContent('<div onKeyUp=return\n/><script>foo();</script>', 'javascript', ' return;\n foo(); ');
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user