mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision fec3928f355e049657d19780aa4b412d9d3a714b
This commit is contained in:
parent
74ba683e27
commit
2a8d9b6983
153 changed files with 3075 additions and 719 deletions
|
@ -0,0 +1,20 @@
|
|||
<!-- quirks -->
|
||||
<title>form margin quirk</title>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<style>
|
||||
form { writing-mode: vertical-lr; }
|
||||
#ref { margin: 0 1em 0 0; }
|
||||
</style>
|
||||
<form id=form></form>
|
||||
<div id=ref></div>
|
||||
<script>
|
||||
test(() => {
|
||||
const formStyle = getComputedStyle(document.getElementById('form'));
|
||||
const refStyle = getComputedStyle(document.getElementById('ref'));
|
||||
assert_equals(formStyle.marginTop, refStyle.marginTop, 'marginTop');
|
||||
assert_equals(formStyle.marginRight, refStyle.marginRight, 'marginRight');
|
||||
assert_equals(formStyle.marginBottom, refStyle.marginBottom, 'marginBottom');
|
||||
assert_equals(formStyle.marginLeft, refStyle.marginLeft, 'marginLeft');
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue