mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision b'1d9b01e2fad6af3a057d571b1e088e15fa9bc8e6'
This commit is contained in:
parent
cfef75c99b
commit
bb34f95b33
1683 changed files with 37170 additions and 4252 deletions
32
tests/wpt/web-platform-tests/css/css-tables/colspan-001.html
Normal file
32
tests/wpt/web-platform-tests/css/css-tables/colspan-001.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
||||
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449">
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
||||
<p>There should be five squares.</p>
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="2" style="background:blue;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
<td colspan="2" style="background:green;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="background:black;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td colspan="2" style="background:lime;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td style="background:hotpink;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/check-layout-th.js"></script>
|
||||
<script>
|
||||
checkLayout('td')
|
||||
</script>
|
32
tests/wpt/web-platform-tests/css/css-tables/colspan-002.html
Normal file
32
tests/wpt/web-platform-tests/css/css-tables/colspan-002.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
||||
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449">
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
||||
<p>There should be five squares.</p>
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="3" style="background:blue;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
<td colspan="3" style="background:green;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="background:black;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td colspan="4" style="background:lime;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td style="background:hotpink;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/check-layout-th.js"></script>
|
||||
<script>
|
||||
checkLayout('td')
|
||||
</script>
|
32
tests/wpt/web-platform-tests/css/css-tables/colspan-003.html
Normal file
32
tests/wpt/web-platform-tests/css/css-tables/colspan-003.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
||||
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449">
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
||||
<p>There should be five squares.</p>
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="10" style="background:blue;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
<td colspan="10" style="background:green;" data-expected-width="75" data-expected-height="75">
|
||||
<div style="width:50px; height:75px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="background:black;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td colspan="18" style="background:lime;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
<td style="background:hotpink;" data-expected-width="50" data-expected-height="50">
|
||||
<div style="width:50px; height:50px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/check-layout-th.js"></script>
|
||||
<script>
|
||||
checkLayout('td')
|
||||
</script>
|
20
tests/wpt/web-platform-tests/css/css-tables/colspan-004.html
Normal file
20
tests/wpt/web-platform-tests/css/css-tables/colspan-004.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
||||
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1430449">
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
||||
<div style="width:100px; height:100px; background:red;">
|
||||
<table style="margin-left:-5px; width:110px;" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="2" style="width:100px;"></td>
|
||||
<td colspan="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width:5px;"></td>
|
||||
<td colspan="2" style="background:green;">
|
||||
<div style="height:100px;"></div>
|
||||
</td>
|
||||
<td style="width:5px;"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue