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

Unified Diff: client/html/src/TextWrappingImplementation.dart

Issue 8548019: Add a script for determining which DOM methods correspond to which HTML methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use "Window" instead of "DOMWindow". Created 9 years, 1 month 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: client/html/src/TextWrappingImplementation.dart
diff --git a/client/html/src/TextWrappingImplementation.dart b/client/html/src/TextWrappingImplementation.dart
index a82810afd6502b163f87d32e90f6814d94e935cb..33438aed9bfdfabfaf1261faf84aa11e6c6c0304 100644
--- a/client/html/src/TextWrappingImplementation.dart
+++ b/client/html/src/TextWrappingImplementation.dart
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
class TextWrappingImplementation extends CharacterDataWrappingImplementation implements Text {
+ /** @domName Document.createTextNode */
factory TextWrappingImplementation(String content) {
return new TextWrappingImplementation._wrap(
dom.document.createTextNode(content));
« no previous file with comments | « client/html/src/OverflowEventWrappingImplementation.dart ('k') | client/html/src/TouchEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698