This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix hyphen disallowed in Suborigin names
According to the proposed spec, Suborigin names should allow alphanumeric characters and hyphens. This fixes a bug where hyphens were disallowed, and it adds tests to verify the behavior. BUG=568755 [email protected] Review URL: https://codereview.chromium.org/1620393002 Cr-Commit-Position: refs/heads/master@{#371381}
- Loading branch information
1 parent
e1758d3
commit 45a6c69
Showing
3 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,9 @@ | |
"Foobar", | ||
"FOOBAR", | ||
"42", | ||
"foo-bar", | ||
"-foobar", | ||
"foobar-" | ||
]; | ||
|
||
var iframe; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters