haikuwebkit/LayoutTests/fast/url/url-tojson-expected.txt

15 lines
562 B
Plaintext

Basic test for URL.toJSON()
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS new URL('https://example.com/').toJSON() is "https://example.com/"
PASS new URL('https://example.com/').toString() is "https://example.com/"
PASS new URL('https://example.com/').href is "https://example.com/"
PASS JSON.stringify(new URL('https://example.com/#"')) is "\"https://example.com/#%22\""
PASS JSON.parse(JSON.stringify(new URL('https://example.com/#"'))) is "https://example.com/#%22"
PASS successfullyParsed is true
TEST COMPLETE