Skip to content

Commit

Permalink
Bug 1864311 [wpt PR 43098] - WebKit export of https://bugs.webkit.org…
Browse files Browse the repository at this point in the history
…/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
pxlcoder authored and moz-wptsync-bot committed Nov 22, 2023
1 parent c6e6a2c commit 06cedf3
Showing 1 changed file with 42 additions and 0 deletions.
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>

0 comments on commit 06cedf3

Please sign in to comment.