Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: LayoutTests/fast/runin/run-in-layer-not-removed-crash.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/runin/run-in-layer-not-removed-crash.html
diff --git a/LayoutTests/fast/runin/run-in-layer-not-removed-crash.html b/LayoutTests/fast/runin/run-in-layer-not-removed-crash.html
deleted file mode 100755
index 6fc69568b844d04d6252ac24ca70a6498aa771b3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/runin/run-in-layer-not-removed-crash.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-Webkit Bug 81265: Crash due to layer tree information not updated when moving run-in children.<br />
-Test passes if it does not crash.
-<style>
-#test0 {
- -webkit-perspective: 1;
-}
-#test1:nth-last-child(3n) {
- -webkit-box-reflect: right;
- display: run-in;
-}
-#test2 {
- display: inline-table;
-}
-#test2:first-child {
- -webkit-box-reflect: below;
-}
-</style>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-onload = function()
-{
- test0 = document.createElement('div');
- test0.setAttribute('id','test0');
- document.body.appendChild(test0);
- test1 = document.createElement('b');
- test1.setAttribute('id','test1');
- document.body.appendChild(test1);
- test2 = document.createElement('div');
- test2.setAttribute('id','test2');
- test1.appendChild(test2);
- test3 = document.createElement('div');
- document.body.appendChild(test3);
- document.body.insertBefore(document.createElement('div'), test3);
- document.designMode = 'on';
- document.execCommand('selectall');
- document.execCommand('removeFormat');
-}
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698