testing/web-platform/tests/css/css-values/calc-width-table-fixed-1-ref.html
author dadaa <daisuke.akatsuka@birchill.co.jp>
Wed, 09 Jul 2025 04:53:58 +0000 (4 hours ago)
changeset 795836 a5500d271fe3a1fefb4d81d96fc4abd00d9eade7
parent 606595 895e9f55c489ee2cc6e5bb3b1039f863e5b72809
permissions -rw-r--r--
Bug 1957280: Limit user's mouse amount for tree component r=places-reviewers,reusable-components-reviewers,masayuki,mstriemer Differential Revision: https://phabricator.services.mozilla.com/D251224
<!DOCTYPE HTML>
<html>
<head>
  <title>CSS Reference: width: calc() on table-layout: auto tables</title>
  <link rel="author" title="L. David Baron" href="https://dbaron.org/">
<style type="text/css">
table { table-layout: fixed; width: 500px; border-spacing: 0 }
</style>
</head>
<body>
<table border>
  <tr>
    <td style="width: 500px">x</td>
    <td style="width: 100px">y</td>
</table>
<table border>
  <tr>
    <td>x</td>
    <td style="width: 100px">y</td>
</table>
<table border>
  <tr>
    <td style="width: 50%">x</td>
    <td style="width: 100px">y</td>
</table>
<table border>
  <tr>
    <td>x</td>
    <td style="width: 100px">y</td>
</table>
</body>
</html>