1'use strict';
2
3// Tests below are not from WPT.
4require('../common');
5const assert = require('assert');
6
7const ref = new URL('http://example.com/path');
8const url = new URL('http://example.com/path');
9assert.throws(() => {
10  url.href = '';
11}, {
12  name: 'TypeError'
13});
14
15assert.deepStrictEqual(url, ref);
16