mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
7480685294
Avoiding normalization introduced in bug 895135 caused gradientStart/Stop to not correspond to the firstStop and lastStop. This can cause us to incorrectly decide to use the repeat fast path. This patch switches takes us back to the same condition as we had before the regression. --HG-- extra : rebase_source : f335e1db9166213115354eb14dbe90b09127a68b
25 lines
462 B
HTML
25 lines
462 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Grid</title>
|
|
<style>
|
|
body {
|
|
background: #fff;
|
|
}
|
|
.r {background: red; width: 300px; height: 50px}
|
|
.g {background: green; width: 300px; height: 50px}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
</body>
|
|
</html>
|