Meta: Add HTML doctype to a screenshot test that should have it
Some checks are pending
CI / Lagom (arm64, Sanitizer_CI, false, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (x86_64, Fuzzers_CI, false, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, false, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, true, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (arm64, macos-15, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (x86_64, ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

This commit is contained in:
Psychpsyo 2025-05-03 22:02:54 +02:00 committed by Andreas Kling
commit 86f2d291ca
Notes: github-actions[bot] 2025-05-06 18:05:13 +00:00

View file

@ -1,4 +1,4 @@
<!DOCTYPE quirks><!-- FIXME: should probably not run in quirks mode, but just swapping the doctype breaks the test --> <!DOCTYPE html>
<link rel="match" href="../expected/color-scheme-ref.html" /> <link rel="match" href="../expected/color-scheme-ref.html" />
<style> <style>
body>div>div { body>div>div {
@ -29,7 +29,7 @@
<div style="background: VisitedText; width: 10em; color: transparent">a</div> <div style="background: VisitedText; width: 10em; color: transparent">a</div>
<div><button style="width: 10rem">Button</button></div> <div><button style="width: 10rem">Button</button></div>
<div><button style="width: 10rem" disabled>Disabled</button></div> <div><button style="width: 10rem" disabled>Disabled</button></div>
<div><input style="width: 10rem" value="Input"></input></div> <div><input style="width: calc(10rem - 2px)" value="Input"></input></div>
<div><input type="checkbox"></input><input type="checkbox" checked></input></div> <div><input type="checkbox"></input><input type="checkbox" checked></input></div>
<div><input type="checkbox" switch></input><input type="checkbox" switch checked></input></div> <div><input type="checkbox" switch></input><input type="checkbox" switch checked></input></div>
<div><input type="radio" name="lightradio"></input><input type="radio" name="lightradio" checked></input></div> <div><input type="radio" name="lightradio"></input><input type="radio" name="lightradio" checked></input></div>
@ -59,7 +59,7 @@
<div style="background: VisitedText; width: 10em; color: transparent">a</div> <div style="background: VisitedText; width: 10em; color: transparent">a</div>
<div><button style="width: 10rem">Button</button></div> <div><button style="width: 10rem">Button</button></div>
<div><button style="width: 10rem" disabled>Disabled</button></div> <div><button style="width: 10rem" disabled>Disabled</button></div>
<div><input style="width: 10rem" value="Input"></input></div> <div><input style="width: calc(10rem - 2px)" value="Input"></input></div>
<div><input type="checkbox"></input><input type="checkbox" checked></input></div> <div><input type="checkbox"></input><input type="checkbox" checked></input></div>
<div><input type="checkbox" switch></input><input type="checkbox" switch checked></input></div> <div><input type="checkbox" switch></input><input type="checkbox" switch checked></input></div>
<div><input type="radio" name="darkradio"></input><input type="radio" name="darkradio" checked></input></div> <div><input type="radio" name="darkradio"></input><input type="radio" name="darkradio" checked></input></div>