Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-css-unterminated-comment.html
blob28d47c1d30a39e9d93f87cd9f8078f562506c986
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
6 <style>/* unterminated comment </style>
7 <style>/*</style>
9 <style>/* terminated comment */</style>
10 <style>/* terminated comment *//*</style>
12 <script>
14 function test()
16 InspectorTest.consoleModel.messages().forEach(function(message)
18 InspectorTest.addResult(message.message + " (line " + message.line + ")");
19 });
21 InspectorTest.completeTest();
24 </script>
25 </head>
27 <body onload="runTest()">
28 <p id="p">Tests that unterminated comment in CSS generates a warning.</p>
29 </body>
30 </html>