| Index: LayoutTests/css-parser/color-escape-parsing.html
|
| diff --git a/LayoutTests/css-parser/color-escape-parsing.html b/LayoutTests/css-parser/color-escape-parsing.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3eaf352a56fadb4539d559780782887b9af30fb8
|
| --- /dev/null
|
| +++ b/LayoutTests/css-parser/color-escape-parsing.html
|
| @@ -0,0 +1,9 @@
|
| +<!doctype html>
|
| +<script src="../resources/testharness.js"></script>
|
| +<script src="../resources/testharnessreport.js"></script>
|
| +<script src="resources/property-parsing-test.js"></script>
|
| +<script>
|
| +assert_valid_value("color", "\\rgb(10, 20, 30)", "rgb(10, 20, 30)");
|
| +assert_invalid_value("border-color", "\\#ff0000");
|
| +assert_invalid_value("background-color", "rgb\\(255\\,0\\,0\\)");
|
| +</script>
|
|
|