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

Unified Diff: LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js

Issue 347773002: Implement select listbox using shadow DOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/forms/resources/select-live-pseudo-selectors.js
diff --git a/LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js b/LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js
index 35c1dd58ce6f3f5b595b82a1886c07ca85c194ca..893349b1d97df8649a38dea6dc5bbfd487f19e56 100644
--- a/LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js
+++ b/LayoutTests/fast/forms/resources/select-live-pseudo-selectors.js
@@ -116,9 +116,9 @@ form.innerHTML = '<select id="select-multiple" multiple required size="4">' +
mouseDownOnSelect('select-multiple', 0);
mouseDownOnSelect('select-size4', 0);
shouldBe('backgroundOf("select-multiple")', 'validColor');
-shouldBe('backgroundOf("multiple-empty")', 'transparentColor');
keishi 2014/06/22 11:59:55 Background color of this option is -internal-activ
+shouldNotBe('backgroundOf("multiple-empty")', 'validColor');
shouldBe('backgroundOf("select-size4")', 'validColor');
-shouldBe('backgroundOf("size4-empty")', 'transparentColor');
+shouldNotBe('backgroundOf("size4-empty")', 'validColor');
debug('Change the value with a placeholder label option:');
el = makeInvalid();

Powered by Google App Engine
This is Rietveld 408576698