diff options
Diffstat (limited to 'WebCore/manual-tests/css3-background-layer-count.html')
-rw-r--r-- | WebCore/manual-tests/css3-background-layer-count.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/WebCore/manual-tests/css3-background-layer-count.html b/WebCore/manual-tests/css3-background-layer-count.html new file mode 100644 index 0000000..fc21fd7 --- /dev/null +++ b/WebCore/manual-tests/css3-background-layer-count.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html> + <head> + <title>CSS Test: Number of background properties greater than number of background images</title> + <style type="text/css"> + div + { + margin: 10px; + width: 250px; + height: 250px; + border: thick solid black; + } + #test + { + background-image: url("resources/non-animated.gif"), url("resources/non-animated.gif"), url("resources/non-animated.gif"); + background-position: right bottom, right top, left bottom, left center, right center; + background-repeat: no-repeat, no-repeat, repeat-x, repeat, repeat-y; + } + #reference + { + background-image: url("resources/non-animated.gif"), url("resources/non-animated.gif"), url("resources/non-animated.gif"); + background-position: right bottom, right top, left bottom; + background-repeat: no-repeat, no-repeat, repeat-x; + } + </style> + </head> + <body> + <p>Test passes if the contents of the black boxes look exactly the same.</p> + <table> + <td> + <div id="test"></div> + </td> + <td> + <div id="reference"></div> + </td> + </table> + </body> +</html> |