mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
These tests were using chrome mochitest which forces the test page to be running in chrome and in parent process. This doesn't reflect typical setup where the page runs unprivileged in content process. Also, with the current bug, the pages running in system principal will be debugged with a special setup. Actors will be run with modules loaded in a distinct loader in order to be executed in a distinct compartment, distinct from the shared system principal compartment. That a prerequisite for the Debugger API. It has to run in a distinct compartment than its debuggee. Depends on D16825 Differential Revision: https://phabricator.services.mozilla.com/D16826 --HG-- rename : devtools/server/tests/mochitest/animation-data.html => devtools/server/tests/browser/animation-data.html rename : devtools/server/tests/mochitest/test_inspector-mutations-childlist.html => devtools/server/tests/browser/browser_inspector-mutations-childlist.js rename : devtools/server/tests/mochitest/inspector-helpers.js => devtools/server/tests/browser/inspector-helpers.js extra : moz-landing-system : lando
54 lines
1 KiB
HTML
54 lines
1 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Inspector Search Test Data</title>
|
|
<style>
|
|
#pseudo {
|
|
display: block;
|
|
margin: 0;
|
|
}
|
|
#pseudo:before {
|
|
content: "before element";
|
|
}
|
|
#pseudo:after {
|
|
content: "after element";
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
window.onload = function() {
|
|
window.opener.postMessage("ready", "*");
|
|
};
|
|
</script>
|
|
</head>
|
|
</body>
|
|
<!-- A comment
|
|
spread across multiple lines -->
|
|
|
|
<img width="100" height="100" src="large-image.jpg" />
|
|
|
|
<h1 id="pseudo">Heading 1</h1>
|
|
<p>A p tag with the text 'h1' inside of it.
|
|
<strong>A strong h1 result</strong>
|
|
</p>
|
|
|
|
<div id="arrows" northwest="↖" northeast="↗" southeast="↘" southwest="↙">
|
|
Unicode arrows
|
|
</div>
|
|
|
|
<h2>Heading 2</h2>
|
|
<h2>Heading 2</h2>
|
|
<h2>Heading 2</h2>
|
|
|
|
<h3>Heading 3</h3>
|
|
<h3>Heading 3</h3>
|
|
<h3>Heading 3</h3>
|
|
|
|
<h4>Heading 4</h4>
|
|
<h4>Heading 4</h4>
|
|
<h4>Heading 4</h4>
|
|
|
|
<div class="💩" id="💩" 💩="💩"></div>
|
|
</body>
|
|
</html>
|