forked from mirrors/gecko-dev
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
23 lines
459 B
HTML
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>
|