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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLHyperlinkElementUtils.idl

Issue 1902683003: Rename URLUtils interface as HTMLHyperlinkElementUtils and update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-add toString() non-enumerable; needed Created 4 years, 8 months 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAreaElement.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // https://html.spec.whatwg.org/#htmlhyperlinkelementutils
6
7 [
8 NoInterfaceObject, // Always used on target of 'implements'
9 ] interface HTMLHyperlinkElementUtils {
10 stringifier attribute USVString href;
11 [NotEnumerable, ImplementedAs=href] USVString toString();
sof 2016/04/19 10:01:31 I can't say I understand why this toString() is ne
sof 2016/04/19 11:05:15 https://codereview.chromium.org/1901983002/ mostly
sof 2016/04/19 11:51:59 We should try to address not having enumerable toS
12 readonly attribute USVString origin;
13
14 attribute USVString protocol;
15 attribute USVString username;
16 attribute USVString password;
17 attribute USVString host;
18 attribute USVString hostname;
19 attribute USVString port;
20 attribute USVString pathname;
21 attribute USVString search;
22 attribute USVString hash;
23 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAreaElement.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698