137.html (468B)
1 <!DOCTYPE html> 2 <html><head> 3 <title>scheduler: SVG script empty xlink:href</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script src="testlib/testlib.js"></script> 7 </head> 8 <div id="log"></div> 9 <script> 10 var t = async_test(); 11 </script> 12 <svg> 13 <script xlink:href=""> 14 t.step(function() {assert_unreached()}); 15 </script> 16 </svg> 17 <script> 18 onload = t.step_func(function() { 19 t.done(); 20 }); 21 </script>