mirror of
https://github.com/servo/servo.git
synced 2025-08-08 15:05:35 +01:00
Update web-platform-tests to revision 3cb5a99e5521936fb8819de8aaba806050b84184
This commit is contained in:
parent
1d2c0ba0bc
commit
c700482629
204 changed files with 5112 additions and 1445 deletions
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Serialization of `-webkit-appearance`</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#appearance-switching">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
test(function() {
|
||||
var input = document.createElement('input');
|
||||
input.style.setProperty('-webkit-appearance', 'none');
|
||||
|
||||
assert_equals(input.style.cssText, 'appearance: none;');
|
||||
}, 'serialization via CSSStyleDeclaration');
|
||||
|
||||
test(function(t) {
|
||||
var style = document.createElement('style');
|
||||
document.body.appendChild(style);
|
||||
t.add_cleanup(function() {
|
||||
document.body.removeChild(style);
|
||||
});
|
||||
style.sheet.insertRule('#foo {}', 0);
|
||||
style.sheet.cssRules[0].style.setProperty('-webkit-appearance', 'none');
|
||||
|
||||
assert_equals(
|
||||
style.sheet.cssRules[0].cssText, '#foo { appearance: none; }'
|
||||
);
|
||||
}, 'serialization via CSSStyleRule');
|
||||
|
||||
test(function(t) {
|
||||
var style = document.createElement('style');
|
||||
document.body.appendChild(style);
|
||||
t.add_cleanup(function() {
|
||||
document.body.removeChild(style);
|
||||
});
|
||||
style.sheet.insertRule('@media print { #foo {} }', 0);
|
||||
style.sheet.cssRules[0].cssRules[0].style.setProperty('-webkit-appearance', 'none');
|
||||
|
||||
assert_equals(
|
||||
style.sheet.cssRules[0].cssText,
|
||||
'@media print {\n #foo { appearance: none; }\n}'
|
||||
);
|
||||
}, 'serialization via CSSMediaRule');
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue