| Index: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-zIndex-auto.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-zIndex-auto.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-zIndex-auto.html
|
| deleted file mode 100644
|
| index d6a4e5d0b0febfc0363d20419ccea4003cfd67a6..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-zIndex-auto.html
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <script>
|
| - function log(msg)
|
| - {
|
| - var console = document.getElementById('console');
|
| - console.appendChild(document.createTextNode(msg + "\n"));
|
| - }
|
| -
|
| - function test()
|
| - {
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - var element = document.getElementById('nonPositionedDiv');
|
| - var compStyle = element.ownerDocument.defaultView.getComputedStyle(element, null);
|
| - log("Non-positioned Div:");
|
| - log(" Computed Style = " + compStyle.zIndex + " (Should be auto)");
|
| - log(" element.style.zIndex = " + element.style.zIndex + " (Should be 20)");
|
| - log("");
|
| -
|
| - element = document.getElementById('positionedDiv');
|
| - compStyle = element.ownerDocument.defaultView.getComputedStyle(element, null);
|
| - log("Positioned Div:");
|
| - log(" Computed Style = " + compStyle.zIndex + " (Should be 20)");
|
| - log(" element.style.zIndex = " + element.style.zIndex + " (Should be 20)");
|
| - }
|
| - </script>
|
| -</head>
|
| -<body onload="test();">
|
| - <div style="z-index:20" id='nonPositionedDiv'></div>
|
| - <div style="z-index:20; position: absolute" id='positionedDiv'></div>
|
| - <pre id='console'></pre>
|
| -</body>
|
| -</html>
|
|
|