| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index cae98860390a76ec762896a3c858de72021520de..339f72e781fe226b6f2d9cfe8ee38ce6935bb545 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -10170,7 +10170,7 @@ abstract class Element extends Node implements GlobalEventHandlers, ParentNode,
|
|
|
| // Workaround for Chrome bug 229142- URIs are not resolved in new doc.
|
| var base = _parseDocument.createElement('base');
|
| - base.href = document._baseUri;
|
| + base.href = document.baseUri;
|
| _parseDocument.head.append(base);
|
| }
|
| var contextElement;
|
| @@ -19904,7 +19904,7 @@ class Node extends EventTarget native "Node" {
|
| @JSName('baseURI')
|
| @DomName('Node.baseURI')
|
| @DocsEditable()
|
| - final String _baseUri;
|
| + final String baseUri;
|
|
|
| /**
|
| * A list of this node's children.
|
|
|