diff options
Diffstat (limited to 'tests/wpt/css-tests/css-transforms-1_dev/html/transform-transformable-inline-block.htm')
-rw-r--r-- | tests/wpt/css-tests/css-transforms-1_dev/html/transform-transformable-inline-block.htm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/wpt/css-tests/css-transforms-1_dev/html/transform-transformable-inline-block.htm b/tests/wpt/css-tests/css-transforms-1_dev/html/transform-transformable-inline-block.htm new file mode 100644 index 00000000000..5016d74da78 --- /dev/null +++ b/tests/wpt/css-tests/css-transforms-1_dev/html/transform-transformable-inline-block.htm @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html><head> + <title>CSS Test (Transforms): Transformability of Inline-Block</title> + <link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor"> + <link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help"> + <meta content="This tests that transforms specified on an + inline-block work as expected." name="assert"> + <link href="reference/transform-transformable-inline-block-ref.htm" rel="match"> + <style> + body { + overflow: hidden; + } + div { + display: inline-block; + transform: translate(50px, 50px); + } + </style> + </head> + <body> + <div>Some text</div> + + +</body></html>
\ No newline at end of file |