Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: LayoutTests/accessibility/updating-attribute-in-table-causes-crash.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body id="body"> 6 <body id="body">
7 7
8 <table id="table"> 8 <table id="table">
9 <tr id="row"><td id="tablecell" tabindex=0>1</td><td>2</td></tr> 9 <tr id="row"><td id="tablecell" tabindex=0>1</td><td>2</td></tr>
10 <tr id="row2"><td id="tablecell2" tabindex=0>1</td><td>2</td></tr> 10 <tr id="row2"><td id="tablecell2" tabindex=0>1</td><td>2</td></tr>
11 </table> 11 </table>
12 12
13 <p id="description"></p> 13 <p id="description"></p>
14 <div id="console"></div> 14 <div id="console"></div>
(...skipping 12 matching lines...) Expand all
27 // To reproduce, we need to remove a row and replace with another row, t hen set an attribute in the meantime. 27 // To reproduce, we need to remove a row and replace with another row, t hen set an attribute in the meantime.
28 document.getElementById("table").getElementsByTagName("TBODY")[0].remove Child(document.getElementById("row2")); 28 document.getElementById("table").getElementsByTagName("TBODY")[0].remove Child(document.getElementById("row2"));
29 document.getElementById("table").getElementsByTagName("TBODY")[0].append Child(tr); 29 document.getElementById("table").getElementsByTagName("TBODY")[0].append Child(tr);
30 document.getElementById("tablecell").setAttribute("title", "test"); 30 document.getElementById("tablecell").setAttribute("title", "test");
31 } 31 }
32 32
33 </script> 33 </script>
34 34
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/title-ui-element-correctness.html ('k') | LayoutTests/animations/animation-css-rule-types.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698