Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WebKit export of https://bugs.webkit.org/show_bug.cgi?id=229900 #41717

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
52 changes: 52 additions & 0 deletions css/css-masking/mask-shorthand-subproperties-reset.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Resetting mask shorthand subproperties</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="help" href="https://drafts.fxtf.org/css-masking/#the-mask">
<meta name="assert" content="All subproperties of the masking property are first reset to their initial values.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="test"></div>
<script>

function set_subproperty(property, value) {
const element = document.getElementById('test')
element.style = ''
element.style[property] = value
}

function test_shorthand_resetting_subproperty(property, newValue) {
if (!CSS.supports(property, newValue))
return
test(() => {
let testElem = document.getElementById('test');
let computed = window.getComputedStyle(testElem);
let initialValue = computed[property];
set_subproperty(property, newValue);
document.getElementById('test').style.mask = 'url("#mask")';
assert_equals(computed[property], initialValue);
assert_not_equals(computed.mask, "");
}, 'Property ' + property + ' should be reset to its initial value.')
}

test_shorthand_resetting_subproperty('mask-border-mode', 'luminance');
test_shorthand_resetting_subproperty('mask-border-outset', '10px 20px 30px 40px');
test_shorthand_resetting_subproperty('mask-border-repeat', 'round space');
test_shorthand_resetting_subproperty('mask-border-slice', '1 2 3 4 fill');
test_shorthand_resetting_subproperty('mask-border-source', 'url("#mask-border")');
test_shorthand_resetting_subproperty('mask-border-width', '10px 20px 30px 40px');
test_shorthand_resetting_subproperty('mask-clip', 'no-clip')
test_shorthand_resetting_subproperty('mask-composite', 'subtract')
test_shorthand_resetting_subproperty('mask-image', 'url("#mask-image")')
test_shorthand_resetting_subproperty('mask-mode', 'luminance')
test_shorthand_resetting_subproperty('mask-origin', 'content-box')
test_shorthand_resetting_subproperty('mask-position', '10px 10px')
test_shorthand_resetting_subproperty('mask-repeat', 'no-repeat')
test_shorthand_resetting_subproperty('mask-size', '10px')
</script>
</body>
</html>
10 changes: 10 additions & 0 deletions css/css-masking/parsing/mask-valid.sub.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
'mask-clip': 'border-box',
'mask-composite': 'add',
'mask-mode': 'match-source',
'mask-border-source': 'none',
'mask-border-outset': '0',
'mask-border-repeat': 'stretch',
'mask-border-slice': '0',
'mask-border-width': 'auto'
})
test_shorthand_value('mask', 'none, linear-gradient(to left bottom, red, blue) padding-box', {
'mask-image': 'none, linear-gradient(to left bottom, red, blue)',
Expand All @@ -79,6 +84,11 @@
'mask-clip': 'border-box, padding-box',
'mask-composite': 'add, add',
'mask-mode': 'match-source, match-source',
'mask-border-source': 'none',
'mask-border-outset': '0',
'mask-border-repeat': 'stretch',
'mask-border-slice': '0',
'mask-border-width': 'auto'
})

</script>
Expand Down