Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / quotes-parsing.html
1 <script src="../../resources/testharness.js"></script>
2 <script src="../../resources/testharnessreport.js"></script>
3 <div id="div"></div>
4 <script>
5 test(function(){
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");
13 </script>