git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New layout tests for the bugs I just fixed.
[WebKit-https.git]
/
LayoutTests
/
fast
/
dom
/
row-inner-text.html
1
<TABLE ID="tbl" CELLSPACING="1" CELLPADDING="1" BORDER="1">
2
<TR id="r">
3
<TH>(1,1)
4
</TH>
5
<TH>(1,2)
6
</TH>
7
<TH>(1,3)
8
</TH>
9
<TH>(1,4)
10
</TH>
11
<TH>(1,5)
12
</TH>
13
</TR>
14
</TABLE>
15
<script>
16
var text = document.getElementById("r").innerText.replace(/\t/g, "[tab]");
17
document.write("<pre>xxx" + text + "xxx</pre>");
18
</script>