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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/rendering/non-replaced-elements/tables/table-vspace-hspace.html

Issue 2668783003: Import wpt@767dc2a4f049c761bd146d61de2ea860a895a624 (Closed)
Patch Set: Update test expectations and baselines. Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!-- quirks -->
2 <meta charset=utf-8>
3 <title>table vspace hspace (quirks mode)</title>
4 <script src=/resources/testharness.js></script>
5 <script src=/resources/testharnessreport.js></script>
6 <div>x</div> <!-- prevent margin collapsing quirks -->
7 <table vspace=25 hspace=25><tr><td>x</table>
8 <div>x</div> <!-- prevent margin collapsing quirks -->
9 <script>
10 var style = getComputedStyle(document.querySelector('table'));
11 ['marginTop', 'marginRight', 'marginBottom', 'marginLeft'].forEach(function(m) {
12 assert_equals(style[m], '0px', m);
13 });
14 done();
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698