fix(chromium): remove local files from extra ling tags & extra script tags (closes #418)

This commit is contained in:
Julien Neuhart
2022-02-08 19:45:10 +01:00
parent b7a8b95820
commit 84875aaf82
6 changed files with 6 additions and 342 deletions

Binary file not shown.

View File

@@ -1,12 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset=v"utf-8">
<title>Gutenberg</title>
</head>
<body>
<p id="extra">Extra link tags <span id="not">not</span> working</p>
</body>
</html>

View File

@@ -1,2 +0,0 @@
let extra = document.getElementById('extra')
extra.innerText = extra.innerText + ' and extra JavaScript tags too!'

View File

@@ -1,14 +0,0 @@
@font-face {
font-family: 'Local';
src: url('font.woff') format('woff');
font-weight: normal;
font-style: normal;
}
#extra {
font-family: 'Local'
}
#not {
display: none;
}