diff options
Diffstat (limited to 'layout/reftests/css-disabled/object')
-rw-r--r-- | layout/reftests/css-disabled/object/object-ref.html | 7 | ||||
-rw-r--r-- | layout/reftests/css-disabled/object/object.html | 7 | ||||
-rw-r--r-- | layout/reftests/css-disabled/object/reftest.list | 1 | ||||
-rw-r--r-- | layout/reftests/css-disabled/object/style.css | 12 |
4 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/css-disabled/object/object-ref.html b/layout/reftests/css-disabled/object/object-ref.html new file mode 100644 index 0000000000..10a4da84ab --- /dev/null +++ b/layout/reftests/css-disabled/object/object-ref.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <object class="ref">foo</object> + </body> +</html> diff --git a/layout/reftests/css-disabled/object/object.html b/layout/reftests/css-disabled/object/object.html new file mode 100644 index 0000000000..74424ec0f3 --- /dev/null +++ b/layout/reftests/css-disabled/object/object.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <object disabled>foo</object> + </body> +</html> diff --git a/layout/reftests/css-disabled/object/reftest.list b/layout/reftests/css-disabled/object/reftest.list new file mode 100644 index 0000000000..471500b977 --- /dev/null +++ b/layout/reftests/css-disabled/object/reftest.list @@ -0,0 +1 @@ +== object.html object-ref.html diff --git a/layout/reftests/css-disabled/object/style.css b/layout/reftests/css-disabled/object/style.css new file mode 100644 index 0000000000..089452c08e --- /dev/null +++ b/layout/reftests/css-disabled/object/style.css @@ -0,0 +1,12 @@ +object { + background-color: green; +} + +object:disabled { + background-color: red; +} + +/* ref should always be green! */ +.ref:disabled { + background-color: green; +} |