mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 715203 - Fix ua.css to include moz-column-fill as inherited property for scrolled content. [r=bz]
This commit is contained in:
parent
14f7de1cd3
commit
210cebd705
21
layout/reftests/columns/columnfill-overflow-style-ref.html
Normal file
21
layout/reftests/columns/columnfill-overflow-style-ref.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 715203: Multicolumn support in scrolled columns</title>
|
||||
<style>
|
||||
.columns {
|
||||
font-size: 12pt;
|
||||
line-height: 1.1;
|
||||
-moz-column-width: 40em;
|
||||
-moz-column-fill: auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="columns">
|
||||
<li>one
|
||||
<li>two
|
||||
<li>three
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
22
layout/reftests/columns/columnfill-overflow-style.html
Normal file
22
layout/reftests/columns/columnfill-overflow-style.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 715203: Multicolumn support in scrolled columns</title>
|
||||
<style>
|
||||
.columns {
|
||||
font-size: 12pt;
|
||||
line-height: 1.1;
|
||||
-moz-column-width: 40em;
|
||||
-overflow-x:auto;
|
||||
-moz-column-fill: auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="columns">
|
||||
<li>one
|
||||
<li>two
|
||||
<li>three
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -16,10 +16,15 @@
|
||||
== column-balancing-002.html column-balancing-002.ref.html
|
||||
== column-balancing-003.html column-balancing-000.ref.html
|
||||
== column-balancing-004.html column-balancing-004.ref.html
|
||||
|
||||
# These next tests need to be a http tests because they use the ahem font,
|
||||
# located in layout/reftests/fonts.
|
||||
HTTP(..) == columnfill-balance.html columnfill-balance-ref.html
|
||||
HTTP(..) == columnfill-auto.html columnfill-auto-ref.html
|
||||
HTTP(..) == columnfill-change.html columnfill-change-ref.html
|
||||
|
||||
== columnrule-basic.html columnrule-basic-ref.html
|
||||
== columnrule-complex.html columnrule-complex-ref.html
|
||||
!= columnrule-linestyles.html columnrule-linestyles-notref.html
|
||||
== columnrule-padding.html columnrule-padding-ref.html
|
||||
== columnfill-overflow-style.html columnfill-overflow-style-ref.html
|
||||
|
@ -162,6 +162,7 @@
|
||||
-moz-column-width: inherit;
|
||||
-moz-column-gap: inherit;
|
||||
-moz-column-rule: inherit;
|
||||
-moz-column-fill: inherit;
|
||||
/* Do not change these. nsCSSFrameConstructor depends on them to create a good
|
||||
frame tree. */
|
||||
position: static !important;
|
||||
|
Loading…
Reference in New Issue
Block a user