mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
4ae65b30d1
The first of these pieces of information is the intrinsic widths cached on a block. The second of them is the font inflation cached on a text frame (which might be set to 1.0 at this point if a text frame has previously had intrinsic width calculation done on it, but hasn't been reflowed).
24 lines
528 B
HTML
24 lines
528 B
HTML
<html>
|
|
<head>
|
|
<title>Bug Reproduction</title>
|
|
</head>
|
|
<style type="text/css">
|
|
html, body {
|
|
/*
|
|
* Work around bug 759755 / bug 757179. Setting overflow hidden
|
|
* avoids these bugs being triggered due to the hypothetical scrollbar
|
|
* reflows.
|
|
*/
|
|
overflow: hidden;
|
|
}
|
|
table { width: 100% }
|
|
body, table, tbody, tr, td {
|
|
margin: 0; border: none; padding: 0; border-spacing: 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1 id="welcome">Welcome to Bugzilla</h1>
|
|
<input type="button" id="find" value="Quick Search"></input>
|
|
</body>
|
|
</html>
|