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

Unified Diff: trunk/LayoutTests/fast/table/table-display-inline.html

Issue 23708015: Revert 157368 "Tables with display:inline rendered as block elem..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | trunk/LayoutTests/tables/mozilla/bugs/bug3037-1-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/LayoutTests/fast/table/table-display-inline.html
===================================================================
--- trunk/LayoutTests/fast/table/table-display-inline.html (revision 157406)
+++ trunk/LayoutTests/fast/table/table-display-inline.html (working copy)
@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<html>
-<style> #tableId, #trId, #tdId {display: inline;}</style>
-<body>
-<h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=53693">53693</a>. Tables with display:inline rendered in wrong position.</h3>
-<h4>Table was created as Inline renderer and another table renderer is created for table's content. So It was displayed as block element and all it's style properties also associated with inline renderer and was not applied to table.</h4>
-
-case 1: The two blocks below should present in same line, first block with green background color and second block with blue background color.
-<br/><br/>
-
-<table style="display:inline; background: green; width: 100px;">
-<tr><td>inline table 1</td></tr>
-</table>
-
-<table style="display:inline; background: blue; width: 100px;">
-<tr><td>inline table 2</td></tr>
-</table>
-
-<br/><br/>
-
-case 2: 'Hello' and 'World' should present in same line.
-
-<br/><br/>
-
-<div>Hello <table style="display:inline;"><tr><td>World</td></tr></table> </div>
-
-<br/>
-
-<div>Hello <table id="tableId"><tr id="trId"><td id="tdId">World</td></tr></table> </div>
-
-<br/>
-
-case 3: 'before', 'inside table' and 'after' should present in same line.
-
-<br/><br/>
-
-<table>
- <tbody id="y">
- <tr><td>inside table</td></tr>
- </tbody>
-</table>
-
-<span>
-before
- <div id="x"></div>
-after
-<span>
-
-<script>
- var x = document.getElementById('x');
- x.parentNode.replaceChild(document.getElementById('y'), x);
-</script>
-
-<br/><br/>
-
-<span>
-before
- <tr><td>inside table</td></tr>
-after
-<span>
-
-</body>
-</html>
« no previous file with comments | « no previous file | trunk/LayoutTests/tables/mozilla/bugs/bug3037-1-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698