45ab3e0332
This adds a proof-of-concept of `puppeteer-firefox`. This consists of two parts: - `//experimental/juggler` - patches to apply to Firefox. - `//experimental/puppeteer-firefox` - front-end code to be merged with Puppeteer. As things become more stable, we'll gradually move it out of the experimental folder.
33 lines
459 B
HTML
33 lines
459 B
HTML
<style>
|
|
:root {
|
|
font-family: monospace;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
div {
|
|
width: 10ch;
|
|
word-wrap: break-word;
|
|
border: 1px solid blue;
|
|
transform: rotate(33deg);
|
|
line-height: 8ch;
|
|
padding: 2ch;
|
|
}
|
|
|
|
a {
|
|
margin-left: 7ch;
|
|
}
|
|
</style>
|
|
<div>
|
|
<a href='#clicked'>123321</a>
|
|
</div>
|
|
<script>
|
|
document.querySelector('a').addEventListener('click', () => {
|
|
window.__clicked = true;
|
|
});
|
|
</script>
|