summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1340248.html
blob: 04e7ebaada1bb1f0f86243615fc88dd03c0d3c46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
    <head>
        <script>
            o1 = document.createElement('style');
            o1.textContent = "* { position: absolute; }";
            o1.className = 'c2';
            document.head.appendChild(o1);
            document.styleSheets[0].insertRule("*::first-line { border-inline-end-style: solid; }", 0);
            document.styleSheets[0].insertRule("* { display: table-row ; }", 0);
            document.styleSheets[0].insertRule(".c2::first-line { border-style: none ; }", 0);
        </script>
    </head>
</html>