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

Unified Diff: LayoutTests/media/webkit-media-controls-display-expected.html

Issue 689613002: Disallow non-flexbox child renderers for RenderMedia (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: z-index Created 6 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
Index: LayoutTests/media/webkit-media-controls-display-expected.html
diff --git a/LayoutTests/media/webkit-media-controls-display-expected.html b/LayoutTests/media/webkit-media-controls-display-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..f5ea3ee1f06f4432b16adaf5afd9e7ce754366ee
--- /dev/null
+++ b/LayoutTests/media/webkit-media-controls-display-expected.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<p>Overloading ::-webkit-media-controls display property. PASS if it doesn't crash.</p>
+<style>
+video { width: 200px; height: 30px; }
+</style>
+<script>
+var displayValues = ["-webkit-box", "-webkit-flex", "-webkit-inline-box",
+ "-webkit-inline-flex", "block", "flex", "grid", "inline", "inline-block",
+ "inline-flex", "inline-grid", "inline-table", "list-item", "none", "table",
+ "table-caption", "table-cell", "table-column", "table-column-group",
+ "table-footer-group", "table-header-group", "table-row", "table-row-group"];
+
+displayValues.forEach(function(value) {
+ var video = document.createElement("video");
+ switch (value) {
+ case "-webkit-flex":
+ case "-webkit-inline-flex":
+ case "flex":
+ case "inline-flex":
+ video.controls = true;
+ }
+ document.body.appendChild(video);
+});
+</script>
« no previous file with comments | « LayoutTests/media/webkit-media-controls-display.html ('k') | LayoutTests/media/webkit-media-controls-webkit-appearance.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698