mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
21 lines
486 B
HTML
21 lines
486 B
HTML
<!doctype html>
|
|
<script src="include.js"></script>
|
|
<iframe id="frame" style="width: 400px"></iframe>
|
|
<script>
|
|
asyncTest(done => {
|
|
frame.onload = () => {
|
|
println(getComputedStyle(frame.contentDocument.documentElement).fontSize);
|
|
done();
|
|
};
|
|
|
|
frame.srcdoc = `
|
|
<!DOCTYPE html>
|
|
<style>
|
|
:root {
|
|
font-size: 10vw;
|
|
}
|
|
</style>
|
|
`;
|
|
});
|
|
</script>
|