diff options
Diffstat (limited to 'tests/wpt/css-tests/css-transforms-1_dev/html/transform-origin-009.htm')
-rw-r--r-- | tests/wpt/css-tests/css-transforms-1_dev/html/transform-origin-009.htm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/wpt/css-tests/css-transforms-1_dev/html/transform-origin-009.htm b/tests/wpt/css-tests/css-transforms-1_dev/html/transform-origin-009.htm deleted file mode 100644 index 9b6b5b7c964..00000000000 --- a/tests/wpt/css-tests/css-transforms-1_dev/html/transform-origin-009.htm +++ /dev/null @@ -1,41 +0,0 @@ -<!DOCTYPE html> -<html><head><meta charset="utf-8"> -<title>CSS Transforms Test: transform-origin - 0% center('center' computes to '50%' in vertical position)</title> -<link href="http://www.intel.com" rel="author" title="Intel"> -<link href="mailto:jieqiongx.cui@intel.com" rel="author" title="Jieqiong Cui"> -<link href="http://www.w3.org/TR/css-transforms-1/#transform-origin-property" rel="help" title="8. The 'transform-origin' Property"> -<link href="reference/transform-origin-007-ref.htm" rel="match"> -<meta content="" name="flags"> -<meta content="The 'transform-origin' property set 'center' computes to 50%(top 50%) for the vertical position." name="assert"> -<style> - .div1 { - height: 150px; - position: absolute; - width: 150px; - } - .div2 { - background-color: gray; - } - #test { - background-color: red; - height: 50px; - margin: 50px 0px 50px 100px; - transform: rotate(180deg); - transform-origin: 0% center; - width: 50px; - } - #ref { - background-color: green; - height: 50px; - margin: 50px 0px 50px 100px; - transform: rotate(180deg); - transform-origin: 0% 50%; - width: 50px; - } -</style> -</head><body> - <p>Test passes if there is a filled green square in the <strong>center</strong> of the gray square and no red.</p> - <div class="div1 div2"><div id="test"></div></div> - <div class="div1"><div id="ref"></div></div> - -</body></html>
\ No newline at end of file |