| Index: compiler/java/com/google/dart/compiler/SystemLibraryManager.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/SystemLibraryManager.java (revision 15460)
|
| +++ compiler/java/com/google/dart/compiler/SystemLibraryManager.java (working copy)
|
| @@ -43,7 +43,7 @@
|
|
|
| public URI expandRelativeDartUri(URI uri) throws AssertionError {
|
| String host = uri.getHost();
|
| - if (host == null) {
|
| + if (host == null && uri.getAuthority() == null) {
|
| String spec = uri.getSchemeSpecificPart();
|
| String replacement = expansionMap.get(spec);
|
| if (replacement != null) {
|
|
|