gecko-dev/testing/web-platform/tests/css/css-images/gradient-crash.html
Rune Lillesveen aec891f144 Bug 1499368 [wpt PR 13542] - Don't propagate root/body background to viewport for display:none., a=testonly
Automatic update from web-platform-testsDon't propagate root/body background to viewport for display:none.

According to the specification, we should not paint backgrounds for
html or body on the viewport if they are display:none [1].

[1] https://drafts.csswg.org/css-backgrounds/#special-backgrounds

Bug: 895757
Change-Id: Ia975022e3bfa849298667f72908a64c0d5331872
Reviewed-on: https://chromium-review.googlesource.com/c/1283134
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Reviewed-by: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#599990}

--

wpt-commits: 6aa79dbab74eee1e2112908cd150514942bdac36
wpt-pr: 13542


--HG--
rename : testing/web-platform/tests/tools/lint/tests/dummy/ref/about_blank-ref.html => testing/web-platform/tests/tools/lint/tests/dummy/about_blank.html
2018-11-07 14:40:16 +00:00

12 lines
421 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>Does this gradient crash the browser?</title>
<link rel="match" href="../reference/blank.html">
<link rel="help" href="https://drafts.csswg.org/css-images-3/#color-stop-syntax">
<meta name="assert" content="Gradients with total length zero and absolute positioned stops do not crash.">
<style>
div {
background: linear-gradient(black 0,white);
}
</style>
<div></div>