| /* |
| * Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| * for details. All rights reserved. Use of this source code is governed by a |
| * BSD-style license that can be found in the LICENSE file. |
| */ |
| /** |
| * @assertion |
| * @description |
| */ |
| import "dart:html"; |
| import "../../resources/check-layout.dart"; |
| import "../../testharness.dart"; |
| |
| const String htmlEL1 = r''' |
| <style> |
| #container { |
| width: 1px; |
| } |
| #table { |
| width: 200px; |
| table-layout: fixed; |
| } |
| #table tr td { |
| width: 100px; |
| padding: 0; |
| } |
| </style> |
| '''; |
| |
| const String htmlEL2 = r''' |
| This test verifies table cell width is correctly updated after a table-layout change. |
| <div id="container"> |
| <table id="table"> |
| <tr><td data-expected-width="100"></td><td data-expected-width="100"></td></tr> |
| </table> |
| </div> |
| <div id="test-output"></div> |
| '''; |
| |
| void main() { |
| document.head.appendHtml(htmlEL1, treeSanitizer: new NullTreeSanitizer()); |
| document.body.appendHtml(htmlEL2, treeSanitizer: new NullTreeSanitizer()); |
| document.body.offsetTop; |
| |
| var container = document.getElementById('container'); |
| container.style.setProperty('width', '500px'); |
| |
| var table = document.getElementById('table'); |
| table.style.setProperty('table-layout', 'auto'); |
| table.style.setProperty('width', 'auto'); |
| |
| checkLayout("#table tr td", document.getElementById("test-output")); |
| } |