Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-with-borderattr-null.html
blob82acf17ce5e7d952878cdf871791c685a34b2caf
1 <!DOCTYPE html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6 </script>
7 <script src="../../resources/js-test.js"></script>
8 </head>
9 <body>
10 <p>There should be a black box below. <br>
12 <table id="table" border="null" width="100%" height="100%">
13 <tr>
14 <td height="26"></td>
15 </tr>
16 </table>
17 <div id="console"></div>
19 <script>
20 shouldBeEqualToString('getComputedStyle(document.querySelector("table")).borderTopWidth', "1px");
21 </script>
22 </body>