mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
LibWeb/CSS: Implement type(<syntax>) in attr()
This lets the `attr()` interpret the attribute's contents as an arbitrary type instead of just as a string or number.
This commit is contained in:
committed by
Tim Ledbetter
parent
0a5e8c2865
commit
27a666f3b2
Notes:
github-actions[bot]
2025-07-16 13:48:58 +00:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/LadybirdBrowser/ladybird/commit/27a666f3b21 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5400 Reviewed-by: https://github.com/tcl3 ✅
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Values and Units Test: attr() in max()</title>
|
||||
|
||||
<meta name="assert" content="The attr() function notation is allowed inside a max() notation.">
|
||||
<link rel="author" title="Fuqiao Xue" href="mailto:xfq@w3.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#attr-notation">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#calc-notation">
|
||||
<link rel="match" href="../../../../expected/wpt-import/css/css-values/reference/200-200-green.html">
|
||||
|
||||
<style>
|
||||
html, body { margin: 0px; padding: 0px; }
|
||||
|
||||
html { background: white; overflow: hidden; }
|
||||
#outer { position: relative; background: green; }
|
||||
|
||||
#outer { width: max(attr(data-test type(<length>))); height: 200px; }
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="outer" data-test="200px"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user