forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1876541 - Zoom should affect intrinsic replaced element size. r=T…
…YLin Differential Revision: https://phabricator.services.mozilla.com/D199990
- Loading branch information
Showing
5 changed files
with
42 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
testing/web-platform/meta/css/cssom-view/image-x-y-zoom.html.ini
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
testing/web-platform/tests/css/zoom/tentative/image-intrinsic-size.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<meta charset="utf-8"> | ||
<title>Zoom affects image intrinsic sizes</title> | ||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:[email protected]"> | ||
<link rel="author" title="Mozilla" href="https://mozilla.org"> | ||
<link rel="help" href="https://drafts.csswg.org/css-viewport/#zoom-property"> | ||
<link rel="match" href="background-image-ref.html"> | ||
<style> | ||
img { | ||
vertical-align: top; | ||
zoom: .5; | ||
} | ||
</style> | ||
<img src="/images/pattern.png"> |