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

Unified Diff: LayoutTests/fast/runin/runin-remove-child-simple.html

Issue 19290002: Move runin to original position when sibling element is destroyed. Additionally, if If moveRunInUnd… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated patch Created 7 years, 5 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/runin-remove-child-simple.html
diff --git a/LayoutTests/fast/runin/runin-remove-child-simple.html b/LayoutTests/fast/runin/runin-remove-child-simple.html
new file mode 100644
index 0000000000000000000000000000000000000000..d7748d3233d9037694582b50d39b65b35825c220
--- /dev/null
+++ b/LayoutTests/fast/runin/runin-remove-child-simple.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<style>
+.runin { display: run-in }
+</style>
+</head>
+<body>
+<div>
Julien - ping for review 2013/07/17 17:28:24 Please add a description for what you are testing
+ <div class="runin">Test passes if this text is visible</div>
+ <div id="t1">This should not be visible</div>
+</div>
+</body>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+document.body.offsetTop;
+document.getElementById('t1').style.display = 'none';
+</script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698