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

Unified Diff: client/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9648017: Get rid of Element#classList in the wrapperless DOM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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:
Download patch
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 9f7aa1f44f38686c4d46b51deff2e11577ad1459..0ce5db7019e9a94689973128f1c9549b8a54cecd 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -7531,8 +7531,6 @@ class _ElementImpl extends _NodeImpl implements Element {
HTMLCollection get _children() => _wrap(_ptr.children);
- DOMTokenList get classList() => _wrap(_ptr.classList);
-
String get _className() => _wrap(_ptr.className);
void set _className(String value) { _ptr.className = _unwrap(value); }
@@ -25742,8 +25740,6 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
final HTMLCollection _children;
- final DOMTokenList classList;
-
String _className;
final int _clientHeight;
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698