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

Unified Diff: third_party/WebKit/Source/core/dom/Document.idl

Issue 2754933004: Set default document urls to 'about:blank'. (Closed)
Patch Set: Added comments, put impl in .cpp. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/Document.idl
diff --git a/third_party/WebKit/Source/core/dom/Document.idl b/third_party/WebKit/Source/core/dom/Document.idl
index 8b3ae3e71b25e99932fb891d427cfb90e5922f57..55319b3b5d8947e6cafe3856bc86b06282b92cc4 100644
--- a/third_party/WebKit/Source/core/dom/Document.idl
+++ b/third_party/WebKit/Source/core/dom/Document.idl
@@ -37,9 +37,9 @@ typedef (HTMLScriptElement or SVGScriptElement) HTMLOrSVGScriptElement;
// FIXME: Document should have a constructor. crbug.com/238234
interface Document : Node {
[SameObject] readonly attribute DOMImplementation implementation;
- readonly attribute DOMString URL;
+ [ImplementedAs=urlForBinding] readonly attribute DOMString URL;
// FIXME: documentURI should not be nullable.
- [ImplementedAs=url] readonly attribute DOMString? documentURI;
+ [ImplementedAs=urlForBinding] readonly attribute DOMString? documentURI;
[MeasureAs=DocumentOrigin] readonly attribute DOMString origin;
[RuntimeEnabled=suborigins] readonly attribute DOMString suborigin;
readonly attribute DOMString compatMode;

Powered by Google App Engine
This is Rietveld 408576698