summaryrefslogtreecommitdiff
path: root/lib/internal/url.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/url.js')
-rw-r--r--lib/internal/url.js15
1 files changed, 13 insertions, 2 deletions
diff --git a/lib/internal/url.js b/lib/internal/url.js
index 518c745b41..693f082aed 100644
--- a/lib/internal/url.js
+++ b/lib/internal/url.js
@@ -245,7 +245,14 @@ function onParseError(flags, input) {
// Reused by URL constructor and URL#href setter.
function parse(url, input, base) {
const base_context = base ? base[context] : undefined;
- url[context] = new URLContext();
+ // In the URL#href setter
+ if (!url[context]) {
+ Object.defineProperty(url, context, {
+ enumerable: false,
+ configurable: false,
+ value: new URLContext()
+ });
+ }
_parse(input.trim(), -1, base_context, undefined,
onParseComplete.bind(url), onParseError);
}
@@ -1437,7 +1444,11 @@ function toPathIfFileURL(fileURLOrPath) {
}
function NativeURL(ctx) {
- this[context] = ctx;
+ Object.defineProperty(this, context, {
+ enumerable: false,
+ configurable: false,
+ value: ctx
+ });
}
NativeURL.prototype = URL.prototype;