-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1864311 [wpt PR 43098] - WebKit export of https://bugs.webkit.org…
…/show_bug.cgi?id=264617, a=testonly Automatic update from web-platform-tests WebKit export of https://bugs.webkit.org/show_bug.cgi?id=264617 (#43098) -- wpt-commits: 884acb0a5e497f349bf9d87dd86e3b7edf36a5b7 wpt-pr: 43098
- Loading branch information
1 parent
c6e6a2c
commit 06cedf3
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...atform/tests/css/css-writing-modes/forms/date-input-appearance-native-computed-style.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!doctype html> | ||
<meta charset="utf-8"> | ||
<link rel="author" title="Aditya Keerthi" href="https://github.com/pxlcoder"> | ||
<link rel="help" href="https://drafts.csswg.org/css-writing-modes/#block-flow"> | ||
<title>Date input appearance native writing mode computed style</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<input type="date" id="horizontal-empty"> | ||
<input type="date" id="horizontal-with-value" value="2023-11-10"> | ||
<input type="date" id="vertical-lr-empty" style="writing-mode: vertical-lr"> | ||
<input type="date" id="vertical-lr-with-value" value="2023-11-10" style="writing-mode: vertical-lr"> | ||
<input type="date" id="vertical-rl-empty" style="writing-mode: vertical-rl"> | ||
<input type="date" id="vertical-rl-with-value" value="2023-11-10" style="writing-mode: vertical-rl"> | ||
|
||
<script> | ||
for (const element of document.querySelectorAll("[id^='horizontal-']")) { | ||
test(() => { | ||
const style = getComputedStyle(element); | ||
const blockSize = parseInt(style.blockSize, 10); | ||
const inlineSize = parseInt(style.inlineSize, 10); | ||
assert_not_equals(blockSize, 0); | ||
assert_not_equals(inlineSize, 0); | ||
assert_greater_than(inlineSize, blockSize); | ||
assert_equals(style.blockSize, style.height); | ||
assert_equals(style.inlineSize, style.width); | ||
}, `${element.id} block size should match height and inline size should match width`); | ||
} | ||
|
||
for (const element of document.querySelectorAll("[id^='vertical-']")) { | ||
test(() => { | ||
const style = getComputedStyle(element); | ||
const blockSize = parseInt(style.blockSize, 10); | ||
const inlineSize = parseInt(style.inlineSize, 10); | ||
assert_not_equals(blockSize, 0); | ||
assert_not_equals(inlineSize, 0); | ||
assert_greater_than(inlineSize, blockSize); | ||
assert_equals(style.blockSize, style.width); | ||
assert_equals(style.inlineSize, style.height); | ||
}, `${element.id} block size should match width and inline size should match height`); | ||
} | ||
</script> |