-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for hidden attribute user agent stylesheet
Bug: 1055002 Change-Id: Iab14dd4c1d11c16ddc4f41d18a1f75b34b3735d8
- Loading branch information
1 parent
0bbf876
commit f37b4c6
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
html/editing/the-hidden-attribute/hidden-ua-stylesheet.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,62 @@ | ||
<!DOCTYPE html> | ||
<link rel=author href="mailto:jarhar@chromium.org"> | ||
<link rel=help href="https://html.spec.whatwg.org/multipage/rendering.html#hiddenCSS"> | ||
<link rel=help href="https://github.com/whatwg/html/pull/7475#issuecomment-1069313217"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<div id=div>hello world</div> | ||
<table id=table> | ||
<colgroup id=colgroup> | ||
<col id=col></col> | ||
</colgroup> | ||
</table> | ||
|
||
<script> | ||
function testDisplayNone(description) { | ||
test(() => { | ||
assert_equals(getComputedStyle(div).display, 'none', | ||
`${description} should make the div display:none.`); | ||
assert_equals(getComputedStyle(div).contentVisibility, 'visible', | ||
`${description} should not affect the div's content-visibility property.`); | ||
}, description); | ||
} | ||
|
||
function testCVHidden(description) { | ||
test(() => { | ||
assert_equals(getComputedStyle(div).display, 'block', | ||
`${description} should not affect the div's display property.`); | ||
assert_equals(getComputedStyle(div).contentVisibility, 'hidden', | ||
`${description} should make the div content-visibility:hidden.`); | ||
}, description); | ||
} | ||
|
||
function testNormal(description) { | ||
test(() => { | ||
assert_equals(getComputedStyle(div).display, 'block', | ||
`${description} should not affect the div's display property.`); | ||
assert_equals(getComputedStyle(div).contentVisibility, 'visible', | ||
`${description} should not affect the div's content-visibility property.`); | ||
}, description); | ||
} | ||
|
||
test(() => { | ||
div.removeAttribute('hidden'); | ||
testNormal(`div.removeAttribute('hidden')`); | ||
|
||
div.setAttribute('hidden', ''); | ||
testDisplayNone(`div.setAttribute('hidden', '')`); | ||
|
||
div.setAttribute('hidden', 'asdf'); | ||
testDisplayNone(`div.setAttribute('hidden', 'asdf')`); | ||
|
||
div.setAttribute('hidden', 'until-found'); | ||
testCVHidden(`div.setAttribute('hidden', 'until-found')`); | ||
|
||
div.setAttribute('hidden', 'UNTIL-FOUND'); | ||
testCVHidden(`div.setAttribute('hidden', 'UNTIL-FOUND')`); | ||
|
||
div.setAttribute('hidden', 'UnTiL-FoUnD'); | ||
testCVHidden(`div.setAttribute('hidden', 'UnTiL-FoUnD')`); | ||
}); | ||
</script> |