mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Update web-platform-tests to revision 4a5223502fa660ce03e470af6a61c8bc26c5a8ee
This commit is contained in:
parent
c5f7c9ccf3
commit
e891345f26
1328 changed files with 36632 additions and 20588 deletions
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<title>column-width:0</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-multicol/#cw" title="3.1. column-width">
|
||||
<div id="longhand" style="column-width:0;"></div>
|
||||
<div id="shorthand" style="columns:0;"></div>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
assert_equals(getComputedStyle(longhand).columnWidth, "0px");
|
||||
assert_equals(getComputedStyle(shorthand).columnWidth, "0px");
|
||||
}, "column-width:0 is a valid CSS declaration");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue