diff options
Diffstat (limited to 'layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html')
-rw-r--r-- | layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html b/layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html new file mode 100644 index 0000000000..2b00ab20bd --- /dev/null +++ b/layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html @@ -0,0 +1,28 @@ +<html> +<head> +<style> +body { + margin: 0px; +} +#child { + width:100px; + height:100px; + background-color: green; + display: inline-block; +} + +#parent::before { + content: ''; + width: 100px; + height: 100px; + display: inline-block; + background-color: blue; +} +</style> +</head> +<body> + <div id="parent"> + <div id="child"></div> + </div> +</body> +</html> |