ladybird/Tests/LibWeb/Ref/input/scrolled-svg-path-with-transform.html
Andreas Kling ad634897b8
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 (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (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
Tests: Hide scrollbars in failing ref test
The test scrolled-svg-path-with-transform.html was relying on overlay
scrollbars mistakenly not showing up.
2025-03-28 22:01:51 +00:00

18 lines
No EOL
429 B
HTML

<!doctype html>
<link rel="match" href="../expected/scrolled-svg-path-with-transform.html" />
<style>
html {
scrollbar-width: none;
}
body {
margin: 0px;
height: 5000px;
}
.rotate {
transform: rotate(180deg);
outline: 1px solid black;
}
</style><body style="overflow: auto"><svg class="rotate"><path d="M22 13.5H6.3l5.5 7.5H8.3l-6.5-9 6.5-9h3.5l-5.5 7.5H22v3z">
<script>
window.scrollBy(0, 100);
</script>