summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/html_internal-stylesheet.html
blob: c0870d84a14ee3bb379466ded2ef4ede80a877ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<script>
"use strict";

const html = `
	<!DOCTYPE html>
	<head>
		<link rel="stylesheet" href="internal-loaded.css">
	</head>
`;
onload = function() {
  // eslint-disable-next-line no-unsanitized/method
  document.write(html);
}
</script>