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

Unified Diff: LayoutTests/fast/table/remove-anonymous-row.html

Issue 540453003: Get rid of anonymous table* wrappers when they are no longer needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master Created 6 years, 3 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/table/remove-anonymous-row.html
diff --git a/LayoutTests/fast/table/remove-anonymous-row.html b/LayoutTests/fast/table/remove-anonymous-row.html
new file mode 100644
index 0000000000000000000000000000000000000000..bc697afb9166581ec9a488ffa73d99cd60663578
--- /dev/null
+++ b/LayoutTests/fast/table/remove-anonymous-row.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<script>
+ window.onload = function() {
+ document.body.offsetTop;
+ document.getElementById('elm').style.display = 'none';
+ }
+</script>
+<p>There should be a blue <em>square</em> below.</p>
+<div style="display:table; border-spacing:100px; background:blue;">
+ <div style="display:table-row-group;"><div id="elm"></div></div>
+ <div style="display:table-row-group;"><div style="width:10px; height:10px;"></div></div>
+</div>
« no previous file with comments | « LayoutTests/fast/table/remove-anonymous-cell-expected.html ('k') | LayoutTests/fast/table/remove-anonymous-row-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698