Index: LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html |
diff --git a/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html b/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html |
deleted file mode 100644 |
index ea59ea40125fb383864c87247c07340d5b8a4c13..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/highlight-css-shapes-outside-scroll.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- |
-.float { |
- width: 8em; |
- height: 8em; |
- float: left; |
- shape-margin: 2em; |
- margin: 1em; |
-} |
- |
-.circle { |
- background-color:blue; |
- shape-outside: circle(closest-side at center); |
- -webkit-clip-path: circle(closest-side at center); |
-} |
- |
-</style> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/elements-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- var i = 0; |
- function dump() |
- { |
- InspectorTest.dumpInspectorHighlightJSON("circle", i == 0 ? scroll : InspectorTest.completeTest.bind(InspectorTest)); |
- } |
- function scroll() |
- { |
- window.scrollTo(0, 100); |
- ++i; |
- dump(); |
- } |
- dump(); |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<div class="float circle" id="circle"> </div> |
-</body> |
-</html> |