content/base/crashtests/816253.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/content/base/crashtests/816253.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html>
     1.6 +    <head>
     1.7 +        <script>
     1.8 +            window.onload = function() {
     1.9 +                setInterval(
    1.10 +                    function next_step() {
    1.11 +                        var style = document.createElement('style');
    1.12 +                        style.innerHTML = "{ }";
    1.13 +                        document.getElementsByTagName("*")[ 7 ].appendChild(style);
    1.14 +                        window.dump('.');
    1.15 +                    }, 10);
    1.16 +            }
    1.17 +        </script>
    1.18 +    </head>
    1.19 +    <body>
    1.20 +        <div id="console"></div>
    1.21 +        <div id="parentDiv">
    1.22 +            <div id="left-to-right" dir="auto" class="testElement">
    1.23 +                <input type="text" value="מקור השם עברית">Test test test
    1.24 +            </div>
    1.25 +        </div>
    1.26 +        <script id="des">
    1.27 +            var el = document.getElementById("left-to-right");
    1.28 +            document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color');
    1.29 +
    1.30 +            document.getElementById("parentDiv").style.display = "none";
    1.31 +        </script>
    1.32 +
    1.33 +    </body>
    1.34 +</html>

mercurial