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

Unified Diff: LayoutTests/fast/selectors/input-with-selection-pseudo-element.html

Issue 220343006: Fix for ::selection pseudo element to work on input elements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adding another Layout Test Created 6 years, 8 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 | LayoutTests/fast/selectors/input-with-selection-pseudo-element-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/selectors/input-with-selection-pseudo-element.html
diff --git a/LayoutTests/fast/selectors/input-with-selection-pseudo-element.html b/LayoutTests/fast/selectors/input-with-selection-pseudo-element.html
new file mode 100644
index 0000000000000000000000000000000000000000..25c20c0b8d2586db9dbdd0019a2479730963c833
--- /dev/null
+++ b/LayoutTests/fast/selectors/input-with-selection-pseudo-element.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<style>
+ ::selection { background-color: rgba(63, 128, 33, 0.95); color: yellow; }
+</style>
+<input id="inputText" type="text" value="Hello" style="border: 5px solid;
+ width:100px; font-size: 16px; font-family:sans-serif;
+ padding: 0; margin: 0; outline:none;"><br>
+<br>The above selected text in the input box should have green background and yellow color.
+<script>
+ window.onload = document.getElementById('inputText').select();
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/selectors/input-with-selection-pseudo-element-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698