Skip to content

Commit

Permalink
Bug 1452123 [wpt PR 9955] - Sync mozilla reftests as of 2018-03-09, a…
Browse files Browse the repository at this point in the history
…=testonly

Automatic update from web-platform-testsSync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/415e9b18ca2a1532086d5e2d5d21343cd004b5fd .

This commit contains a single change:
* [bug 1444136](https://bugzilla.mozilla.org/show_bug.cgi?id=1444136) by me, already reviewed by gsnedders.  Fixes #9912.

--
Remove entries from the lint whitelist that are fixed by the fix for #9912.

wpt-commits: a94171ad6309b41271b08553302d11a2b544bb51, 27b759e2d99020a09911d252c953777ae150e381
wpt-pr: 9955
wpt-commits: a94171ad6309b41271b08553302d11a2b544bb51, 27b759e2d99020a09911d252c953777ae150e381
wpt-pr: 9955

UltraBlame original commit: 9011794a980089e9568bb1034f5dc7d4b34c391c
  • Loading branch information
marco-c committed Oct 2, 2019
1 parent 28f5155 commit 74e4ed9
Show file tree
Hide file tree
Showing 69 changed files with 2,775 additions and 112 deletions.
198 changes: 99 additions & 99 deletions testing/web-platform/meta/MANIFEST.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image repeat</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-size: 36px 36px;
background-repeat: repeat;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 36px 36px;
background-image: linear-gradient(to top left, red, green);
background-repeat: repeat;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>

Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-1-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'round' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: round;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 32px 32px;
background-image: linear-gradient(to top left, red, green);
background-repeat: round;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-1-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'round round' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: round round;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 32px 32px;
background-image: linear-gradient(to top left, red, green);
background-repeat: round round;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-1-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'repeat round' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 36px 36px;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: repeat round;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 36px 36px;
background-image: linear-gradient(to top left, red, green);
background-repeat: repeat round;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-1-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'round repeat' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 32px 36px;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: round repeat;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 32px 36px;
background-image: linear-gradient(to top left, red, green);
background-repeat: round repeat;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-1-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'repeat round' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 36px 32px;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: repeat round;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 36px 32px;
background-image: linear-gradient(to top left, red, green);
background-repeat: repeat round;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image repeat</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-size: 36px 36px;
background-repeat: repeat-x;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: linear-gradient(to top left, red, green);
background-size: 36px 36px;
background-repeat: repeat-x;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image round no-repeat</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-2-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'round no-repeat' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-repeat: round no-repeat;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-size: 32px 36px;
background-image: linear-gradient(to top left, red, green);
background-repeat: round no-repeat;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image repeat</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style type="text/css">
#outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-size: 36px 36px;
background-repeat: repeat-y;
}
#outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: linear-gradient(to top left, red, green);
background-size: 36px 36px;
background-repeat: repeat-y;
}
</style>
</head>
<body>
<div id="outer"><div id=inner></div></div>
<div id="outer_gradient"><div id=inner></div></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image no-repeat round</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
<link rel="match" href="background-repeat-round-3-ref.html">
<meta name="assert" content="Test checks whether background-repeat: 'no-repeat round' works correctly or not.">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-size: 36px auto;
background-repeat: no-repeat round;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: linear-gradient(to top left, red, green);
background-size: 36px 32px;
background-repeat: no-repeat round;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background: background-repeat: background image repeat with specified position</title>
<link rel="author" title="Ethan Lin" href="mailto:[email protected]">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style type="text/css">
.outer {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: url(support/aqua-yellow-32x32.png);
background-size: 36px 36px;
background-repeat: repeat;
background-position: 5px 5px;
}
.outer_gradient {
width: 72px;
height: 72px;
border: 1px solid black;
background-image: linear-gradient(to top left, red, green);
background-size: 36px 36px;
background-repeat: repeat;
background-position: 5px 5px;
}
</style>
</head>
<body>
<div class="outer"></div>
<div class="outer_gradient"></div>
</body>
</html>
Loading

0 comments on commit 74e4ed9

Please sign in to comment.