Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |