Index: LayoutTests/fast/runin/run-in-parent-add-child.html |
diff --git a/LayoutTests/fast/runin/run-in-parent-add-child.html b/LayoutTests/fast/runin/run-in-parent-add-child.html |
deleted file mode 100755 |
index 8c47274c5e62112906849fa1cf9add1cdcf7eeb4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/runin/run-in-parent-add-child.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<!DOCTYPE html> |
-<html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;"> |
-<!-- WebKit bug 86387 - Move run-in handling to addChild, instead of in layout. --> |
-<!-- 'A' green box, followed by 'B' orange box, followed by 'C' purple box in the same line. --> |
-<style> |
-.runin { display: run-in; color: green; } |
-</style> |
-</head> |
-<body> |
-<div> |
- <div class="runin">A</div> |
- <div id="test" style="color: purple">C</div> |
-</div> |
-</body> |
-<script> |
-document.body.offsetTop; |
-test = document.getElementById('test'); |
-span = document.createElement('span'); |
-span.appendChild(document.createTextNode('B')); |
-span.style.color = 'orange'; |
-test.insertBefore(span, test.firstChild); |
-</script> |
-</html> |