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

Unified Diff: LayoutTests/fast/table/row-in-inline-block.html

Issue 895953003: Insert an anonymous inline-table when inserting a table part under an inline. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review - lump similar tests together in one file. Created 5 years, 10 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/row-in-inline-block.html
diff --git a/LayoutTests/fast/table/row-in-inline-block.html b/LayoutTests/fast/table/row-in-inline-block.html
new file mode 100644
index 0000000000000000000000000000000000000000..8de229f9721862c5bbf030c760e5db604034fded
--- /dev/null
+++ b/LayoutTests/fast/table/row-in-inline-block.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<script src="../../resources/js-test.js"></script>
+<p>Test that a table-row child of an inline is wrapped inside an inline-table (and table-row-group).</p>
+<span style="display:inline-block;">
+ <div id="first" style="display:table-row; color:blue; background:blue;"><div style="width:1em; height:1em;"></div></div>
+ There should be one blue box above and one below this line.
+ <div id="last" style="display:table-row; color:blue; background:blue;"><div style="width:1em; height:1em;"></div></div>
+</span>
+<div id="console"></div>
+<script>
+ var firstBottom = document.getElementById('first').getClientRects()[0].bottom;
+ var lastTop = document.getElementById('last').getClientRects()[0].top;
+ shouldBeGreaterThan("lastTop", "firstBottom");
+</script>
« no previous file with comments | « LayoutTests/fast/table/display-as-inline-expected.txt ('k') | LayoutTests/fast/table/row-in-inline-block-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698