mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 01:19:12 +00:00
22 lines
538 B
HTML
22 lines
538 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>This page will be modified by the add-on</title>
|
|
<script>
|
|
function sendAlertsForNode(node) {
|
|
alert(node.textContent);
|
|
var color = window.getComputedStyle(node).getPropertyValue("color");
|
|
alert(color);
|
|
}
|
|
|
|
function run() {
|
|
sendAlertsForNode(document.getElementById("header"));
|
|
sendAlertsForNode(document.getElementById("header2"));
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="run()">
|
|
<h1 id="header">Lorem ipsum</h1>
|
|
<h2 id="header2">Uncustomized content</h2>
|
|
</body>
|
|
</html> |