diff options
Diffstat (limited to 'layout/reftests/bugs/1714763-1-ref.html')
-rw-r--r-- | layout/reftests/bugs/1714763-1-ref.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1714763-1-ref.html b/layout/reftests/bugs/1714763-1-ref.html new file mode 100644 index 0000000000..43bb3f09b6 --- /dev/null +++ b/layout/reftests/bugs/1714763-1-ref.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html> +<style> +html { + /* Suppress scrollbars to avoid periodical unthrottling for transform */ + /* animations on the compositor. */ + overflow: hidden; +} +body { + margin: 0px; + padding: 0px; +} + +#target { + position: absolute; + left:100px; + top:100px; + scale:2.1; +} +#rotate { + transform: rotate(180deg); + transform-origin: 50% 50%; +} +#theimg { + width: 100px; + height: 100px; +} +</style> +<body> +<div id="target"> + <div id="rotate"> + <img id="theimg" src="repeatable-diagonal-gradient.png"> + </div> +</div> + +</body> +</html> |