Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / styles / parse-declaration-with-quote.html
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/elements-test.js"></script>
5 <script>
6
7 function test()
8 {
9     WebInspector.showPanel("elements");
10
11     InspectorTest.selectNodeAndWaitForStyles("inspected", dumpStyles);
12
13     function dumpStyles()
14     {
15         InspectorTest.dumpSelectedElementStyles(true);
16         InspectorTest.completeTest();
17     }
18 }
19 </script>
20 </head>
21
22 <body onload="runTest()">
23 <p>
24 Tests that CSSParser correctly parses declarations with unterminated strings. <a href="https://code.google.com/p/chromium/issues/detail?id=231127">Blink bug 231127</a>
25
26 <div id="inspected" style="color: red'foo"></div>
27 </body>
28 </html>