summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1340571.html
blob: f46720cca17e7b6d7b4e82982ff51cf40ca43b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
    <head>
        <style id=z></style>
        <script>
            o1 = document.createElement('embed');
            document.getElementById('z').scrollLeft;
            document.styleSheets[0].insertRule("* { flex-basis: calc(1rem) }", 0);
            try { window.find("a", true, true, false, false, true, false); } catch(e) {}; 
            document.replaceChild(o1, document.documentElement);
            document.documentElement.appendChild(document.createElement('style'));
            document.styleSheets[0].insertRule("* { font: small roman inherit }", 0);
        </script>
    </head>
</html>