Index: third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html b/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9d68d070ec5a8570ba01ee3727f79ec819dec37e |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html |
@@ -0,0 +1,10 @@ |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+ |
+<table id="table"></table> |
+<script> |
+test(function() { |
+ table.style.display = 'inline'; |
+ 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.
|
+}, "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.
|
+</script> |