Index: LayoutTests/inspector/timeline/timeline-recalculate-styles.html |
diff --git a/LayoutTests/inspector/timeline/timeline-recalculate-styles.html b/LayoutTests/inspector/timeline/timeline-recalculate-styles.html |
deleted file mode 100644 |
index 2065507f3c827f0562759cec71102ef2adfaa241..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/timeline/timeline-recalculate-styles.html |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/timeline-test.js"></script> |
- |
-<style> |
-.test-style { |
- color: red; |
-} |
-</style> |
- |
-<script> |
- |
-function performActions() |
-{ |
- var element = document.createElement("div"); |
- element.className = "test-style"; |
- element.innerHTML = "<span>Test data</span>"; |
- document.querySelector('section > div').appendChild(element); |
- var unused = element.offsetWidth; |
-} |
- |
-function test() |
-{ |
- InspectorTest.performActionsAndPrint("performActions()", "RecalculateStyles"); |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests the Timeline API instrumentation of a style recalculation event |
-</p> |
-<section> |
- <div></div> |
-</section> |
-</body> |
-</html> |