~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/interactive/bug1128.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<head>
 
3
<style>
 
4
tr[name="foo"] {
 
5
  background-color: red;
 
6
  font-size: 200%;
 
7
}
 
8
</style>
 
9
</head>
 
10
<body>
 
11
<button onclick="document.getElementById('row1').setAttribute('name', 'foo')">
 
12
        Click me!
 
13
</button>
 
14
 
 
15
<table border>
 
16
  <tr id="row1">This<td>will<td>show<td>a<td>reflow<td>bug</tr>
 
17
  <tr><td>This<td>is<td>a<td>normal<td>row</tr>
 
18
</table>
 
19
</body>
 
20
</html>