Upgrade WebKit

This commit is contained in:
Jarred Sumner
2022-05-08 01:12:13 -07:00
parent 94637711b9
commit 97cceb47b9
71 changed files with 1625 additions and 494 deletions

View File

@@ -26,6 +26,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "root.h"
#include "DOMException.h"
#include "Exception.h"
@@ -76,7 +77,7 @@ auto DOMException::description(ExceptionCode ec) -> const Description&
if (ec < WTF_ARRAY_LENGTH(descriptions))
return descriptions[ec];
static const Description emptyDescription { ASCIILiteral::null(), ASCIILiteral::null(), 0 };
static const Description emptyDescription { {}, {}, 0 };
return emptyDescription;
}