Web Compatibility Support • Re: White Blank page at Shell Limited Warranty Webpage
Pale Moon forum - Forum index [Unofficial]
July 4, 2026
Adding a polyfill for URL.parse results in another error with adoptedStyleSheets; providing that gets the page working, but it's not exactly pretty. Here's the Greasemonkey script I used.
CODE:
// ==UserScript==// @name URL.parse polyfill// @namespace adoxa// @include https://rotella.shell.com/*// @version 1// @grant none// @run-at document-start// ==/UserScript==URL.parse = function(path, base) { try { return new URL(path, base); } catch(e) { return null; }}document.adoptedStyleSheets = [];
Discussion in the ATmosphere