mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Auto merge of #7280 - pcwalton:style-specified-img-intrinsic-width, r=mbrubeck
layout: Take the style-specified width into account when computing the intrinsic inline sizes of images. Improves Facebook Timeline. r? @mbrubeck <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7280) <!-- Reviewable:end -->
This commit is contained in:
commit
5c284a546a
4 changed files with 39 additions and 4 deletions
|
@ -148,6 +148,7 @@ experimental == iframe/size_attributes_vertical_writing_mode.html iframe/size_at
|
|||
!= img_simple.html img_simple_ref.html
|
||||
== img_size_a.html img_size_b.html
|
||||
== img_width_attribute_intrinsic_width_a.html img_width_attribute_intrinsic_width_ref.html
|
||||
== img_width_style_intrinsic_width_a.html img_width_style_intrinsic_width_ref.html
|
||||
== incremental_float_a.html incremental_float_ref.html
|
||||
== incremental_inline_layout_a.html incremental_inline_layout_ref.html
|
||||
== inline_absolute_hypothetical_clip_a.html inline_absolute_hypothetical_clip_ref.html
|
||||
|
|
14
tests/ref/img_width_style_intrinsic_width_a.html
Normal file
14
tests/ref/img_width_style_intrinsic_width_a.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<div style="float: left; background: red; height: 100px; overflow: hidden">
|
||||
<img src=400x400_green.png style="width: 100px;">
|
||||
</div>
|
||||
There should be no red.
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
14
tests/ref/img_width_style_intrinsic_width_ref.html
Normal file
14
tests/ref/img_width_style_intrinsic_width_ref.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<div style="float: left; height: 100px; overflow: hidden">
|
||||
<img src=400x400_green.png style="width: 100px;">
|
||||
</div>
|
||||
There should be no red.
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue