mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
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
12 lines
542 B
HTML
12 lines
542 B
HTML
<!doctype html>
|
|
<title>The content CSS property doesn't override display: contents</title>
|
|
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
|
|
<link rel="match" href="../reference/blank.html">
|
|
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property">
|
|
<style>
|
|
div {
|
|
display: contents;
|
|
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAKElEQVR42u3NQQ0AAAgEoNP+nTWFDzcoQE1udQQCgUAgEAgEAsGTYAGjxAE/G/Q2tQAAAABJRU5ErkJggg==);
|
|
}
|
|
</style>
|
|
<div></div>
|