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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html

Issue 1607703003: Don't force display:inline-table/table on table elements when in quirks mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 <script src="../../resources/testharness.js"></script>
2 <script src="../../resources/testharnessreport.js"></script>
3
4 <table id="table"></table>
5 <script>
6 test(function() {
7 table.style.display = 'inline';
8 assert_equals(getComputedStyle(table).display, "inline");
rune 2016/01/19 09:54:50 You should test tbody, tr, td, ... as well. And al
nainar 2016/01/20 00:44:23 Done.
9 }, "Test to make sure that in quirks mode table elements with display:inline act as they do in standard mode and retain display:inline");
rune 2016/01/19 09:54:50 Not only display:inline, but display in general?
nainar 2016/01/20 00:44:23 Done.
10 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698