Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-recalc.html
blobdfddaa456900eaa70aee13be2a0cff3b8fab5bef
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <table>
4 <tbody>
5 <tr><td>
6 <div></div>
7 <div></div>
8 <div></div>
9 <div></div>
10 <div></div>
11 <div></div>
12 <div></div>
13 <div></div>
14 <div></div>
15 <div></div>
16 </td></tr>
17 </tbody>
18 </table>
19 <script>
20 description("Check that we don't recalc table cell contents when presentation attributes change.");
22 document.body.offsetTop; // Force layout.
23 document.getElementsByTagName("table")[0].setAttribute("border", "2");
24 if (window.internals)
25 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "4");
26 </script>