Skip to content

Commit

Permalink
Import wpt@58eba72745d997d6409722902a6d169ae41b7114
Browse files Browse the repository at this point in the history
Using wpt-import in Chromium 8b190bd.

Note to sheriffs: This CL imports external tests and adds
expectations for those tests; if this CL is large and causes
a few new failures, please fix the failures by adding new
lines to TestExpectations rather than reverting. See:
https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_platform_tests.md

Directory owners for changes in this CL:
kojii@chromium.org:
  external/wpt/css/css-writing-modes

NOAUTOREVERT=true
R=rubber-stamper@appspot.gserviceaccount.com

No-Export: true
Cq-Include-Trybots: luci.chromium.try:linux-wpt-identity-fyi-rel,linux-wpt-input-fyi-rel,linux-blink-rel
Change-Id: I7e0b21e28951b3a8ec91ef835d0cf75558995c5f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4055745
Commit-Queue: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Auto-Submit: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#1075730}
  • Loading branch information
Chromium WPT Sync authored and Chromium LUCI CQ committed Nov 25, 2022
1 parent 4a41f96 commit e591405
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 0 deletions.
47 changes: 47 additions & 0 deletions third_party/blink/web_tests/external/WPT_BASE_MANIFEST_8.json
Expand Up @@ -226582,6 +226582,32 @@
{}
]
],
"range-input-vertical-ltr-painting.html": [
"03e02b10a3f475502bac428a4cf15bf74cd5b66f",
[
null,
[
[
"/css/css-writing-modes/forms/range-input-painting-ref.html",
"=="
]
],
{}
]
],
"range-input-vertical-rtl-painting.html": [
"8c7d234db5c913eab3ea14649d81a1714f3b1028",
[
null,
[
[
"/css/css-writing-modes/forms/range-input-painting-ref.html",
"=="
]
],
{}
]
],
"select-multiple-appearance-native-horizontal.optional.html": [
"57b84109a823a0e1781f56a5241c5b1394309820",
[
Expand Down Expand Up @@ -254728,6 +254754,19 @@
{}
]
],
"nested-svg-through-display-contents.svg": [
"f5440303502c7b268480a949f0433e078ca80b1a",
[
null,
[
[
"/svg/struct/reftests/reference/nested-svg-through-display-contents-ref.svg",
"=="
]
],
{}
]
],
"requiredextensions-empty-string.svg": [
"28f5da4a3e4358821d907a2883b6ef8fa40eeaa4",
[
Expand Down Expand Up @@ -317763,6 +317802,10 @@
]
}
},
"range-input-painting-ref.html": [
"650a8139ca6cc13403957c2b68e8ef954cd80058",
[]
],
"select-multiple-scrolling.optional-expected.txt": [
"464cdd671865d23e588523f9b2e8e4195b965eb6",
[]
Expand Down Expand Up @@ -372403,6 +372446,10 @@
"green-100x100.svg": [
"120941444a4898197d6b6001f9908a6cd48b62ba",
[]
],
"nested-svg-through-display-contents-ref.svg": [
"622978f37881a4d40440595962b84bdb4c00dd91",
[]
]
},
"support": {
Expand Down
@@ -0,0 +1,3 @@
<!DOCTYPE html>
<title>Reference: painting of input[type=range] does not happen outside of its bounds</title>
<p>The range input below should be fully covered.</p>
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://html.spec.whatwg.org/#range-state-(type=range)">
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-4/#block-flow">
<title>Test that painting of input[type=range] does not happen outside of its bounds</title>
<meta charset="utf-8">
<link rel="match" href="range-input-painting-ref.html">

<style>
#container {
position: relative;
}
#cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: red;
}
@supports (writing-mode: vertical-lr) {
#cover {
background-color: Canvas;
}
}
input {
appearance: none;
writing-mode: vertical-lr;
}
</style>

<p>The range input below should be fully covered.</p>

<div id="container">
<input type="range">
<div id="cover"></div>
</div>
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://html.spec.whatwg.org/#range-state-(type=range)">
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-4/#block-flow">
<title>Test that painting of input[type=range] does not happen outside of its bounds</title>
<meta charset="utf-8">
<link rel="match" href="range-input-painting-ref.html">

<style>
#container {
position: relative;
}
#cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: red;
}
@supports (writing-mode: vertical-lr) and (direction: rtl) {
#cover {
background-color: Canvas;
}
}
input {
appearance: none;
writing-mode: vertical-lr;
direction: rtl;
}
</style>

<p>The range input below should be fully covered.</p>

<div id="container">
<input type="range">
<div id="cover"></div>
</div>

0 comments on commit e591405

Please sign in to comment.