Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-viewport/zoom/abspos-static-position.html
<!DOCTYPE html> <html> <head> <link rel="help" href="https://drafts.csswg.org/css-viewport/#zoom-property"> <link rel="match" href="reference/abspos-static-position-ref.html"> <style> body { margin: 0; zoom: 2; } .parent { margin-top: 50px; margin-left: 25%; height: 100px; outline: 2px solid black; } .abspos { position: absolute; width: 100px; height: 100px; background-color: green; } </style> </head> <body> <div class="parent"> <div class="abspos"></div> </div> </body> </html>
/css/css-viewport/zoom/reference/abspos-static-position-ref.html
<!DOCTYPE html> <html> <style> body { margin: 0; } .parent { margin-top: 100px; margin-left: 25%; height: 200px; outline: 4px solid black; } .abspos { position: absolute; width: 200px; height: 200px; background-color: green; } </style> <body> <div class="parent"> <div class="abspos"></div> </div> </body> </html>