From 76f47d33433260e143c9aedbba4cd27b6a78b57c Mon Sep 17 00:00:00 2001 From: Xiaocheng Hu Date: Mon, 16 May 2022 21:06:08 +0000 Subject: [PATCH] Fix when a `script` element is implicitly potentially render-blocking Fixes #7893, which is a bug introduced by #7857. --- source | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source b/source index 81cbb67d3b0..00d43aaa88d 100644 --- a/source +++ b/source @@ -60126,7 +60126,9 @@ o............A....e

A script element is implicitly potentially render-blocking if the element's script's type is set and is equal to - "classic", and the element is "parser-inserted".

+ "classic", the element is "parser-inserted", and the + element does not have an async or + defer attribute.