blob: 004a2a2c48f227d1dfc85a8c90c8eb6d73bdbc87 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Uri parse(String uri)
* Creates a new URI object by parsing a URI string.
* @description RFC-3986 The reg-name syntax allows percent-encoded octets in
* order to represent non-ASCII registered names.
* checks that percent-encoded hostname is accepted.
* @author ilya
* @reviewer
*/
import "../../../Utils/expect.dart";
main() {
var host = '%D0%B9%D1%86%D1%83%D0%BA%D0%B5%D0%BD.%D1%80%D1%84';
Expect.equals(host, Uri.parse('http://$host').host);
}