| <title>CSS Basic User Interface Test: box-sizing:border-box resolved values</title> |
| <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/"> |
| <link rel="help" href="https://drafts.csswg.org/css-ui-3/#box-sizing"> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| var test = document.getElementById("test"); |
| assert_equals(window.getComputedStyle(test)["width"], "100px"); |
| }, "Check the resolved value of 'width' when box-sizing is border-box."); |
| var test = document.getElementById("test"); |
| assert_equals(window.getComputedStyle(test)["height"], "100px"); |
| }, "Check the resolved value of 'height' when box-sizing is border-box."); |