fune/testing/web-platform/tests/css/css-transforms/transform-input-015.html
L. David Baron b40230f43e Bug 1736696 [wpt PR 31318] - Update fuzzy annotations of CSS Transforms WPT reftests., a=testonly
Automatic update from web-platform-tests
Update fuzzy annotations of CSS Transforms WPT reftests.

This updates fuzzy annotations for CSS Transforms WPT reftests based on
nightly results at
https://wpt.fyi/results/css/css-transforms?label=master&label=nightly ,
which appear to be slightly different from the dev channel results at
https://wpt.fyi/results/css/css-transforms?label=master&label=experimental
that were used to write
https://crrev.com/11ee5f45f84216bf2e344b90049bc5a850cebfd8 .

Change-Id: Ib122dc44af94a418b6bfd5c18ef61a0c8ac9463c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3231539
Auto-Submit: David Baron <dbaron@chromium.org>
Reviewed-by: Philip Rogers <pdr@chromium.org>
Commit-Queue: Philip Rogers <pdr@chromium.org>
Cr-Commit-Position: refs/heads/main@{#934005}

--

wpt-commits: 9c46b8061934d87b7fd187700e21ac0c12736f0a
wpt-pr: 31318
2021-10-29 10:24:29 +00:00

47 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSS Test (Transforms): Input (type=range)</title>
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
<link rel="reviewer" title="Apple Inc." href="http://www.apple.com">
<meta name="assert" content='The input element is an atomic inline element,
so it falls under the definition of transformable and should be affected by
transformations as usual. This is one in a series of tests that verify
that a few simple transforms have the expected effect on various types of
inputs. (They only test a few very specific transforms because it would be
difficult to construct a correct reference file for more complex
transforms.)'>
<link rel="match" href="transform-input-015-ref.html">
<meta name="fuzzy" content="maxDifference=0-51;totalPixels=0-179">
<style>
input {
/* Margin to avoid overlap of translated inputs */
margin: 10px;
}
p + input {
transform: rotate(360deg);
}
p + input + input {
transform: translateX(-10px);
}
p + input + input + input {
transform: translateX(10px);
}
p + input + input + input + input {
transform: translateY(-10px);
}
p + input + input + input + input + input {
transform: translateY(10px);
}
</style>
</head>
<body>
<p>type=range</p>
<input value="613" min="0" max="1000" type="range">
<input value="613" min="0" max="1000" type="range">
<input value="613" min="0" max="1000" type="range">
<input value="613" min="0" max="1000" type="range">
<input value="613" min="0" max="1000" type="range">
</body>
</html>