-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Issue #34493 - Orders alphabetically * Issue #34493 - Adds webkitBackgroundClip to the list of alias This was forgotten when handling whatwg/compat#195 * Issue #34493 - Adds webkitBoxSizing to the list of alias It is correctly defines in browsers and everyone implements it. This was defined initially in whatwg/compat#9 * Issue #34493 - Removes webkitMaskBox* from the list of alias As shown in whatwg/compat#202 there is currently no browsers implementing the mask-border-*, which should be the equivalent. They stand on their own and probably for now deserves a test by themselves. * Issue #34493 - Adds webkitMaskBox* to a unique test As shown in whatwg/compat#202 there is currently no browsers implementing the mask-border-*, which should be the equivalent. They stand on their own and probably for now deserves a test by themselves.
- Loading branch information
Showing
2 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
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
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,25 @@ | ||
<!DOCTYPE html> | ||
<title>WebKitMaxBoxImage on CSSStyleDeclaration</title> | ||
<link rel="help" href="https://compat.spec.whatwg.org/#css-simple-aliases"> | ||
<meta name="assert" content="This test verifies that these WebKit properties are enumerated on CSSStyleDeclaration" /> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<body> | ||
</body> | ||
<script> | ||
const PREFIXED_PROPS = [ | ||
'webkitMaskBoxImage', | ||
'webkitMaskBoxImageOutset', | ||
'webkitMaskBoxImageRepeat', | ||
'webkitMaskBoxImageSlice', | ||
'webkitMaskBoxImageSource', | ||
'webkitMaskBoxImageWidth', | ||
]; | ||
|
||
const docBodyStyle = document.body.style; | ||
for (let prop of PREFIXED_PROPS) { | ||
test(() => { | ||
assert_true(prop in docBodyStyle); | ||
}, `${prop} found on CSSStyleDeclaration`); | ||
} | ||
</script> |