Sign in
webkit
/
WebKit
/
5ef1013e667f339f3426d9caebb863013aa8dc77
/
.
/
LayoutTests
/
fast
/
dom
/
null-chardata-crash.html
blob: 1e853690235786a32b45b2f4446c9ed82b852f11 [
file
] [
log
] [
blame
]
<html>
<body>
<p>
To pass, this test should not crash
</p>
<script>
if
(
window
.
testRunner
)
window
.
testRunner
.
dumpAsText
();
var
o
=
document
.
createTextNode
();
try
{
o
.
data
=
null
;
o
.
splitText
(
1
);
}
catch
(
e
)
{}
</script>
</body>
</html>