Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / crash-on-incomplete-not.html
blob0d1b1393af12f27ce0885fb909cacfe1ed4f3a09
1 <html>
2 <head>
3 <style id="m"></style>
4 </head>
5 <body>
6 <script>
7 var g = ":not\\( .title{}";
8 var me = document.getElementById("m");
9 window.setTimeout(runTest,0);
10 function runTest(){
11 me.textContent=g;
12 if (window.testRunner) {
13 testRunner.notifyDone();
16 if (window.testRunner) {
17 testRunner.dumpAsText();
18 testRunner.waitUntilDone();
20 </script>
21 <p>PASS without crash.</p>
22 </body>
23 </html>