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

Unified Diff: LayoutTests/fast/dom/shadow/shadowdom-for-input-checkbox-expected.html

Issue 21165005: Support author Shadow DOM for INPUT elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test should work on Windows and Linux. Created 7 years, 3 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/fast/dom/shadow/shadowdom-for-input-checkbox-expected.html
diff --git a/LayoutTests/fast/dom/shadow/shadowdom-for-input-checkbox-expected.html b/LayoutTests/fast/dom/shadow/shadowdom-for-input-checkbox-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..007d63e7a0c5d817cbdb5a31185cf2eb8a2ce17b
--- /dev/null
+++ b/LayoutTests/fast/dom/shadow/shadowdom-for-input-checkbox-expected.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<body>
+
+<form>
+<span id="cb1">&#x2714;</span>
+<input type="submit">
+</form>
+
+<style>
+#cb1 {
+ -webkit-appearance: none;
+ border: outset;
+ padding: 2px;
+ font-family: monospace;
+ font-size: 20px;
+ white-space: pre;
+ width: 30px;
+ height: 30px;
+ color: red;
+ display: inline-block;
+ box-sizing: border-box;
+}
+
+#cb1:focus {
+ outline: none;
+}
+</style>
+</body>

Powered by Google App Engine
This is Rietveld 408576698