1 <script src=
"../../resources/testharness.js"></script>
2 <script src=
"../../resources/testharnessreport.js"></script>
6 div
.style
.quotes
= "red";
7 assert_equals(div
.style
.quotes
, "");
8 div
.style
.quotes
= '"a"';
9 assert_equals(div
.style
.quotes
, "");
10 div
.style
.quotes
= '"a" "b" cake';
11 assert_equals(div
.style
.quotes
, "");
12 }, "Invalid strings for quotes property do not parse");
15 div
.style
.quotes
= '"a" "b"';
16 assert_equals(div
.style
.quotes
, '"a" "b"');
17 }, "Valid strings should be serialized with space separator");