| Index: LayoutTests/fast/css/foreignObject-bloom-filter.html
|
| diff --git a/LayoutTests/fast/css/foreignObject-bloom-filter.html b/LayoutTests/fast/css/foreignObject-bloom-filter.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..85904a9907161389f8d523d024698b3291573a3d
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css/foreignObject-bloom-filter.html
|
| @@ -0,0 +1,11 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/js-test.js"></script>
|
| +<style>foreignObject #green { color: green }</style>
|
| +<foreignobject>
|
| + <span id="green">This text should be green.</span>
|
| +</foreignobject>
|
| +<script>
|
| +description("Check that the selector filter does not reject a foreignobject selector due to camelCasing.");
|
| +
|
| +shouldBeEqualToString("getComputedStyle(green).color", "rgb(0, 128, 0)");
|
| +</script>
|
|
|