Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Side by Side Diff: LayoutTests/inspector/console/console-css-unterminated-comment.html

Issue 18345005: Reporting unterminated comments in CSS. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-css-unterminated-comment-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5
6 <style>/* unterminated comment </style>
7 <style>/*</style>
8
9 <style>/* terminated comment */</style>
10 <style>/* terminated comment *//*</style>
11
12 <script>
13
14 function test()
15 {
16 WebInspector.console.messages.forEach(function(message)
17 {
18 InspectorTest.addResult(message.message + " (line " + message.line + ")" );
19 });
20
21 InspectorTest.completeTest();
22 }
23
24 </script>
25 </head>
26
27 <body onload="runTest()">
28 <p id="p">Tests that unterminated comment in CSS generates a warning.</p>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-css-unterminated-comment-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698