mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 11:20:57 +00:00
36 lines
732 B
HTML
36 lines
732 B
HTML
<html>
|
|
<head>
|
|
<title>test</title>
|
|
|
|
<link href="./doc_content_stylesheet_linked.css" rel="stylesheet" type="text/css">
|
|
|
|
<script>
|
|
/* eslint no-unused-vars: [2, {"vars": "local"}] */
|
|
"use strict";
|
|
// Load script.css
|
|
function loadCSS() {
|
|
let link = document.createElement("link");
|
|
link.rel = "stylesheet";
|
|
link.type = "text/css";
|
|
link.href = "./doc_content_stylesheet_script.css";
|
|
document.getElementsByTagName("head")[0].appendChild(link);
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
table {
|
|
border: 1px solid #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="loadCSS();">
|
|
<table id="target">
|
|
<tr>
|
|
<td>
|
|
<h3>Simple test</h3>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|