mirror of
https://github.com/servo/servo
synced 2026-04-27 09:57:23 +02:00
Issue warning to devtools when module scripts in use.
This commit is contained in:
@@ -559,6 +559,10 @@ impl HTMLScriptElement {
|
||||
"{} is a module script. It should be fixed after #23545 landed.",
|
||||
url.clone()
|
||||
);
|
||||
self.global().issue_page_warning(&format!(
|
||||
"Module scripts are not supported; {} will not be executed.",
|
||||
url.clone()
|
||||
));
|
||||
},
|
||||
}
|
||||
} else {
|
||||
@@ -578,6 +582,9 @@ impl HTMLScriptElement {
|
||||
"{} is a module script. It should be fixed after #23545 landed.",
|
||||
base_url.clone()
|
||||
);
|
||||
self.global().issue_page_warning(
|
||||
"Module scripts are not supported; ignoring inline module script.",
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user