зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1694795 [wpt PR 27768] - [css-flex] Delete broken redundant flex tests, a=testonly
Automatic update from web-platform-tests [css-flex] Delete broken redundant flex tests These tests rely on a CJK font such that they pass locally and pass in chromium's waterfall, but fail on wpt.fyi. The tests rely on the ordering of glyphs as a pass/fail condition, so using Ahem would make the tests useless. But we can just delete these tests because this functionality is tested by flexbox-writing-mode-0*.html, which we recently imported from mozilla's tree. Change-Id: I810196cce08c05545d60744066154b1999426f9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2718890 Auto-Submit: David Grogan <dgrogan@chromium.org> Reviewed-by: Christian Biesinger <cbiesinger@chromium.org> Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#858084} -- wpt-commits: 2d15ebc19f0e1fffc9d7989b784f2ebeb6722410 wpt-pr: 27768
This commit is contained in:
Родитель
787507462b
Коммит
6517a75a4c
|
@ -1,32 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Reftest Reference</title>
|
|
||||||
<link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga.org">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
color: white;
|
|
||||||
width: 9em;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
background: green;
|
|
||||||
height: 4em;
|
|
||||||
width: 1.5em;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">123</div>
|
|
||||||
<div class="item">abc</div>
|
|
||||||
<div class="item">456</div>
|
|
||||||
<div class="item">def</div>
|
|
||||||
<div class="item">789</div>
|
|
||||||
<div class="item">stu</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,55 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column wrap-reverse, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column-reverse wrap-reverse;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
min-height: 4em;
|
|
||||||
color: white;
|
|
||||||
align-content: flex-end;
|
|
||||||
background: green;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 1em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">u</div>
|
|
||||||
<div class="item">9</div>
|
|
||||||
<div class="item">f</div>
|
|
||||||
<div class="item">6</div>
|
|
||||||
<div class="item">c</div>
|
|
||||||
<div class="item">3</div>
|
|
||||||
<div class="item">t</div>
|
|
||||||
<div class="item">8</div>
|
|
||||||
<div class="item">e</div>
|
|
||||||
<div class="item">5</div>
|
|
||||||
<div class="item">b</div>
|
|
||||||
<div class="item">2</div>
|
|
||||||
<div class="item">s</div>
|
|
||||||
<div class="item">7</div>
|
|
||||||
<div class="item">d</div>
|
|
||||||
<div class="item">4</div>
|
|
||||||
<div class="item">a</div>
|
|
||||||
<div class="item">1</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,55 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column wrap, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column-reverse wrap;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
min-height: 4em;
|
|
||||||
color: white;
|
|
||||||
align-content: flex-start;
|
|
||||||
background: green;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 1em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">s</div>
|
|
||||||
<div class="item">7</div>
|
|
||||||
<div class="item">d</div>
|
|
||||||
<div class="item">4</div>
|
|
||||||
<div class="item">a</div>
|
|
||||||
<div class="item">1</div>
|
|
||||||
<div class="item">t</div>
|
|
||||||
<div class="item">8</div>
|
|
||||||
<div class="item">e</div>
|
|
||||||
<div class="item">5</div>
|
|
||||||
<div class="item">b</div>
|
|
||||||
<div class="item">2</div>
|
|
||||||
<div class="item">u</div>
|
|
||||||
<div class="item">9</div>
|
|
||||||
<div class="item">f</div>
|
|
||||||
<div class="item">6</div>
|
|
||||||
<div class="item">c</div>
|
|
||||||
<div class="item">3</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,40 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column-reverse;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 4em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">stu</div>
|
|
||||||
<div class="item">789</div>
|
|
||||||
<div class="item">def</div>
|
|
||||||
<div class="item">456</div>
|
|
||||||
<div class="item">abc</div>
|
|
||||||
<div class="item">123</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,55 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column wrap-reverse, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column wrap-reverse;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
min-height: 4em;
|
|
||||||
color: white;
|
|
||||||
align-content: flex-end;
|
|
||||||
background: green;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 1em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">3</div>
|
|
||||||
<div class="item">c</div>
|
|
||||||
<div class="item">6</div>
|
|
||||||
<div class="item">f</div>
|
|
||||||
<div class="item">9</div>
|
|
||||||
<div class="item">u</div>
|
|
||||||
<div class="item">2</div>
|
|
||||||
<div class="item">b</div>
|
|
||||||
<div class="item">5</div>
|
|
||||||
<div class="item">e</div>
|
|
||||||
<div class="item">8</div>
|
|
||||||
<div class="item">t</div>
|
|
||||||
<div class="item">1</div>
|
|
||||||
<div class="item">a</div>
|
|
||||||
<div class="item">4</div>
|
|
||||||
<div class="item">d</div>
|
|
||||||
<div class="item">7</div>
|
|
||||||
<div class="item">s</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,55 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column wrap, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column wrap;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
min-height: 4em;
|
|
||||||
color: white;
|
|
||||||
align-content: flex-start;
|
|
||||||
background: green;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 1em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">1</div>
|
|
||||||
<div class="item">a</div>
|
|
||||||
<div class="item">4</div>
|
|
||||||
<div class="item">d</div>
|
|
||||||
<div class="item">7</div>
|
|
||||||
<div class="item">s</div>
|
|
||||||
<div class="item">2</div>
|
|
||||||
<div class="item">b</div>
|
|
||||||
<div class="item">5</div>
|
|
||||||
<div class="item">e</div>
|
|
||||||
<div class="item">8</div>
|
|
||||||
<div class="item">t</div>
|
|
||||||
<div class="item">3</div>
|
|
||||||
<div class="item">c</div>
|
|
||||||
<div class="item">6</div>
|
|
||||||
<div class="item">f</div>
|
|
||||||
<div class="item">9</div>
|
|
||||||
<div class="item">u</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,40 +0,0 @@
|
||||||
<!DOCTYPE html> <!-- coding:utf-8 -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>CSS Flexbox Test: flex direction: row</title>
|
|
||||||
<link rel="author" title="Naoki Okada" href="mailto:somathor@gmail.com" />
|
|
||||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-flow-property">
|
|
||||||
<link rel="match" href="css-flexbox-column-ref.html">
|
|
||||||
<meta name="flags" content="">
|
|
||||||
<meta name="assert" content="Test checks that when writing mode is vertical and flex-flow: column, the flex container is vertical.">
|
|
||||||
<style type="text/css">
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column;
|
|
||||||
writing-mode: vertical-rl;
|
|
||||||
width: 9em;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.item {
|
|
||||||
background: green;
|
|
||||||
height: 4em;
|
|
||||||
width: 1.5em;
|
|
||||||
|
|
||||||
/* make sure UA that doesn't support writing mode and flexbox fails. */
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>The test passes if you see a tall green box with pairs of the digits 1-9 and a-i listed right to left in two columns.</p>
|
|
||||||
<div class="container">
|
|
||||||
<div class="item">123</div>
|
|
||||||
<div class="item">abc</div>
|
|
||||||
<div class="item">456</div>
|
|
||||||
<div class="item">def</div>
|
|
||||||
<div class="item">789</div>
|
|
||||||
<div class="item">stu</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Загрузка…
Ссылка в новой задаче