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

Unified Diff: lib/web_ui.dart

Issue 111893006: Switch web_ui to use path 1.0.0 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years 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/src/utils.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/web_ui.dart
diff --git a/lib/web_ui.dart b/lib/web_ui.dart
index c79542d104970e17389c1d8503a326f35c937582..d27d964326df536ecb2dcd975ab886706520b93d 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -234,7 +234,7 @@ abstract class WebComponent extends CustomElement {
*/
List<Node> _distributeNodes(Element tree, List<Node> pool) {
// Repeat for each active insertion point in TREE, in tree order:
- for (var insertionPoint in tree.queryAll('content')) {
+ for (var insertionPoint in tree.querySelectorAll('content')) {
if (!_isActive(insertionPoint)) continue;
// Let POINT be the current insertion point.
« no previous file with comments | « lib/src/utils.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698