1
0
Fork 0
firefox/testing/web-platform/tests/css/cssom/cssstyledeclaration-csstext-final-delimiter.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSSOM - CSSStyleDeclaration - Text - Serialization - Delimiters</title>
<link rel="author" title="Glenn Adams" href="mailto:glenn@skynav.com"/>
<link rel="help" href="https://drafts.csswg.org/cssom/#the-cssstyledeclaration-interface"/>
<meta name="flags" content="dom"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="box"></div>
<script>
var style = document.getElementById('box').style;
test(function(){
style.cssText = "";
assert_equals(style.cssText, "");
}, 'inline style - text - delimiters - zero declarations');
test(function(){
style.cssText = "left: 10px";
assert_equals(style.cssText, "left: 10px;");
}, 'inline style - text - delimiters - one declaration');
test(function(){
style.cssText = "left: 10px; right: 20px";
assert_equals(style.cssText, "left: 10px; right: 20px;");
}, 'inline style - text - delimiters - two declarations');
</script>
</body>
</html>