Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Unified Diff: third_party/WebKit/LayoutTests/css-display-3/display-contents-set-get.html

Issue 2443693003: Add parsing support for display: contents, and minimum behavior similar to display: none (Closed)
Patch Set: Add parsing support for display: contents, and minimum behavior similar to display: none Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/csswg-test/css-display-3/display-contents-computed-style-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css-display-3/display-contents-set-get.html
diff --git a/third_party/WebKit/LayoutTests/css-display-3/display-contents-set-get.html b/third_party/WebKit/LayoutTests/css-display-3/display-contents-set-get.html
new file mode 100644
index 0000000000000000000000000000000000000000..b1b6a8841dd34cc053d8ac29a2640694ef65eaea
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css-display-3/display-contents-set-get.html
@@ -0,0 +1,43 @@
+<!doctype html>
+<meta charset="utf-8">
+<title>Tests that the 'contents' value for the 'display' property is correctly parsed</title>
+<link rel="help" href="https://drafts.csswg.org/css-display/#box-generation">
+<link rel="author" href="mailto:ecobos@igalia.com" title="Emilio Cobos Álvarez">
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<style>
+ .contents {
+ display: contents;
+ }
+
+ .contents-then-block {
+ display: contents;
+ display: block;
+ }
+
+ .content {
+ display: content;
+ }
+</style>
+<div class="contents" id="contentsElement"></div>
+<div class="content" id="bogusContentsElement"></div>
+<div class="contents-then-block" id="contentsThenBlockElement"></div>
+<script>
+test(function() {
+ var contentsElement = document.getElementById("contentsElement");
+ var bogusContentsElement = document.getElementById("bogusContentsElement");
+ var contentsThenBlockElement = document.getElementById("contentsThenBlockElement");
+
+ assert_equals(getComputedStyle(contentsElement).getPropertyValue("display"), "contents");
+ assert_equals(getComputedStyle(bogusContentsElement).getPropertyValue("display"), "block");
+ assert_equals(getComputedStyle(contentsThenBlockElement).getPropertyValue("display"), "block");
+
+ var element = document.createElement("div");
+ document.body.appendChild(element);
+ assert_equals(getComputedStyle(element).getPropertyValue("display"), "block");
+ element.style.display = "contents";
+ assert_equals(getComputedStyle(element).getPropertyValue("display"), "contents");
+ element.style.display = "block";
+ assert_equals(getComputedStyle(element).getPropertyValue("display"), "block");
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/csswg-test/css-display-3/display-contents-computed-style-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698