fune/testing/web-platform/tests/css/css-transforms/transform-scale-ref.html
L. David Baron 23c6246494 Bug 1733125 [wpt PR 30932] - Fix transform-scale-{001,002}.html and transform-scaley-001.html ., a=testonly
Automatic update from web-platform-tests
Fix transform-scale-{001,002}.html and transform-scaley-001.html . (#30932)

This fixes this set of tests to account for margin collapsing in the
reference, by removing the default margin on body in both test and
reference.

Prior to this change, the tests failed identically in Chromium, Gecko,
and WebKit.
--

wpt-commits: 74023a71f02bed1595c158c6334fc5aebef4f30d
wpt-pr: 30932
2021-10-04 00:20:22 +00:00

23 lines
459 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Clint Talbert" href="mailto:ctalbert@mozilla.com">
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<style>
body {
margin: 0;
}
div {
background: green;
width: 50px;
height: 50px;
margin: 25px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>