summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/crash-on-incomplete-not.html
blob: 0d1b1393af12f27ce0885fb909cacfe1ed4f3a09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<style id="m"></style>
</head>
<body>
<script>
    var g = ":not\\( .title{}";
    var me = document.getElementById("m");
    window.setTimeout(runTest,0);
    function runTest(){
        me.textContent=g;
        if (window.testRunner) {
            testRunner.notifyDone();
        }
    }
    if (window.testRunner) {
        testRunner.dumpAsText();
        testRunner.waitUntilDone();
    }
</script>
<p>PASS without crash.</p>
</body>
</html>