mirror of
https://github.com/servo/servo.git
synced 2025-08-16 19:05:33 +01:00
Update web-platform-tests to revision be959408023fe02cf79abe70f6018598a7004a88
This commit is contained in:
parent
a76777b115
commit
761c8bc2a9
171 changed files with 2434 additions and 907 deletions
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<p>The yellow box should be in the top right corner of the hotpink box.</p>
|
||||
<div style="width:30em; height:30em; background:hotpink;">
|
||||
<div style="float:right; writing-mode:vertical-rl; background:yellow;">
|
||||
<div style="visibility:hidden;">
|
||||
Roses are red,<br>
|
||||
violets are blue.<br>
|
||||
All my base<br>
|
||||
are belong to you.<br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, fixed available inline size for inner on outer</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<div style="width:10em; border:solid; background:yellow;">
|
||||
<div style="padding:3px;">
|
||||
This text should be inside a box with a yellow background and a black border. There should be no red.
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, percentage inline size on inner</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<p>There should be three lines below. The middle line should have a yellow
|
||||
background that takes up about 50% of the viewport width (but otherwise be
|
||||
exactly like the two others, i.e. no extra height or anything like that).</p>
|
||||
A B C D E F G
|
||||
<div style="width:50vw; background:yellow;">
|
||||
A B C D E F G
|
||||
</div>
|
||||
A B C D E F G
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, no constraints</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic" title="4. Intrinsic Size Determination">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" title="7.3.1. Available Space in Orthogonal Flows">
|
||||
<p>There should be three lines below. The middle line should have a
|
||||
yellow background (but otherwise be exactly like the two others,
|
||||
i.e. no extra height or anything like that)</p>
|
||||
A B C D E F G
|
||||
<div style="width:fit-content; background:yellow;">
|
||||
A B C D E F G
|
||||
</div>
|
||||
A B C D E F G
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Three levels of writing mode roots with text inside, no constraints</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic" title="4. Intrinsic Size Determination">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" title="7.3.1. Available Space in Orthogonal Flows">
|
||||
<link rel="match" href="reference/three-levels-of-orthogonal-flows.html">
|
||||
<p>The yellow box should be in the top right corner of the hotpink box.</p>
|
||||
<div style="writing-mode:vertical-rl; width:30em; height:30em; background:hotpink;">
|
||||
<div style="writing-mode:horizontal-tb;">
|
||||
<div style="writing-mode:vertical-rl; background:yellow;">
|
||||
<div style="visibility:hidden;">
|
||||
Roses are red,<br>
|
||||
violets are blue.<br>
|
||||
All my base<br>
|
||||
are belong to you.<br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, fixed available inline size for inner on outer</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic" title="4. Intrinsic Size Determination">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" title="7.3.1. Available Space in Orthogonal Flows">
|
||||
<link rel="match" href="reference/two-levels-of-orthogonal-flows-fixed.html">
|
||||
<div style="writing-mode:vertical-rl; width:10em; border:solid; background:red;">
|
||||
<div style="writing-mode:horizontal-tb; padding:3px; background:yellow;">
|
||||
This text should be inside a box with a yellow background and a black border. There should be no red.
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, percentage inline size on inner</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic" title="4. Intrinsic Size Determination">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" title="7.3.1. Available Space in Orthogonal Flows">
|
||||
<link rel="match" href="reference/two-levels-of-orthogonal-flows-percentage.html">
|
||||
<p>There should be three lines below. The middle line should have a yellow
|
||||
background that takes up about 50% of the viewport width (but otherwise be
|
||||
exactly like the two others, i.e. no extra height or anything like that).</p>
|
||||
A B C D E F G
|
||||
<div style="writing-mode:vertical-rl; background:yellow;">
|
||||
<div style="writing-mode:horizontal-tb; width:50%;">
|
||||
A B C D E F G
|
||||
</div>
|
||||
</div>
|
||||
A B C D E F G
|
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Two levels of writing mode roots with text inside, no constraints</title>
|
||||
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic" title="4. Intrinsic Size Determination">
|
||||
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-auto" title="7.3.1. Available Space in Orthogonal Flows">
|
||||
<link rel="match" href="reference/two-levels-of-orthogonal-flows.html">
|
||||
<p>There should be three lines below. The middle line should have a
|
||||
yellow background (but otherwise be exactly like the two others,
|
||||
i.e. no extra height or anything like that)</p>
|
||||
A B C D E F G
|
||||
<div style="writing-mode:vertical-rl; background:yellow;">
|
||||
<div style="writing-mode:horizontal-tb;">
|
||||
A B C D E F G
|
||||
</div>
|
||||
</div>
|
||||
A B C D E F G
|
|
@ -6,7 +6,7 @@
|
|||
[% END %]
|
||||
<dt>Test Coordinator:</dt>
|
||||
<dd>[% suites.$suite.owner %]</dd>
|
||||
|
||||
|
||||
<p>This is a <strong>[% statusNames.${suites.$suite.status}.title or "ERROR: $suite" %]</strong>
|
||||
version of the [% suites.$suite.title %].</p>
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
|||
<dt><a href="http://test.csswg.org/harness/suite/[% suites.$suite.harness %]">Enter Data</a></dt>
|
||||
<dt><a href="http://test.csswg.org/harness/review/[% suites.$suite.harness %]">Review Results</a></dt>
|
||||
[% END %]
|
||||
|
||||
|
||||
|
||||
[% IF devel %]
|
||||
<p>This build exists to aid in test suite development and contains unreviewed
|
||||
|
@ -42,9 +42,9 @@
|
|||
The appropriate mailing list for submitting tests and bug reports is
|
||||
<a href="http://lists.w3.org/Archives/Public/public-css-testsuite/">public-css-testsuite@w3.org</a>.</p>
|
||||
<p>
|
||||
To report bugs or feedback about a specific test file,
|
||||
search for the filename (without extension) in
|
||||
<a href="https://github.com/w3c/web-platform-tests/issues">Web Platform Tests Issues</a>,
|
||||
To report bugs or feedback about a specific test file,
|
||||
search for the filename (without extension) in
|
||||
<a href="https://github.com/web-platform-tests/wpt/issues">web-platform-tests issues</a>,
|
||||
and file a new issue if necessary with suggested label "wg-css".
|
||||
More information on the contribution process and test guidelines is
|
||||
available on the <a href="http://wiki.csswg.org/test">wiki
|
||||
|
@ -88,7 +88,7 @@
|
|||
features and/or error recovery.</dd>
|
||||
</dl>
|
||||
[% END %]
|
||||
|
||||
|
||||
<p>Unless the test instructions explicitly indicate otherwise,
|
||||
any occurrence of red in a test indicates test failure.</p>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</title>
|
||||
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
|
||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#abspos-items">
|
||||
<link rel="match" href="flexbox-abspos-child-001-ref.html">
|
||||
<link rel="match" href="flexbox-abspos-child-002-ref.html">
|
||||
<style>
|
||||
.flex {
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue