chromium/third_party/blink/web_tests/fast/dom/CSSStyleDeclaration/empty-string-property.html

<body>
    <p>
        Regression test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=15169">http://bugs.webkit.org/show_bug.cgi?id=15169</a>
        Freeze on Google maps using the "Dig a hole" tool</i>.
    </p>
    <p>
        This tests that the empty string property of a CSSStyleDeclaration is
        undefined and that retrieving it does not cause a hang.
    </p>
    <p id="result">FAIL (timed out or did not finish)</p>
    <script>
        if (window.testRunner)
            testRunner.dumpAsText();

        var type = typeof document.body.style[''];
        document.getElementById("result").innerText = type == "undefined" ? "PASS" : "FAIL (typeof document.body.style[''] is " + type + ")";
    </script>
</body>