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

Unified Diff: lib/html/scripts/css_code_generator.py

Issue 11235029: Get rid of ===/!===. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/css_code_generator.py
diff --git a/lib/html/scripts/css_code_generator.py b/lib/html/scripts/css_code_generator.py
index f098d81faf94055f4552c91cd0f3047ac5b82376..11bf7bcbf63ab04d2a66e2c3307fbbbe35bcd465 100644
--- a/lib/html/scripts/css_code_generator.py
+++ b/lib/html/scripts/css_code_generator.py
@@ -109,7 +109,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
CSSStyleDeclarationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
static String get _browserPrefix {
- if (_cachedBrowserPrefix === null) {
+ if (_cachedBrowserPrefix == null) {
if (_Device.isFirefox) {
_cachedBrowserPrefix = '-moz-';
} else {
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698