| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <script src="../../../resources/testharness.js"></script> |   2 <script src="../resources/testharness.js"></script> | 
|   3 <script src="../../../resources/testharnessreport.js"></script> |   3 <script src="../resources/testharnessreport.js"></script> | 
|   4 <script src="resources/shadow-dom.js"></script> |   4 <script src="../fast/dom/shadow/resources/shadow-dom.js"></script> | 
|   5  |   5  | 
|   6 <input id="input"></input> |   6 <input id="input"></input> | 
|   7 <div id="sandbox"> |   7 <div id="sandbox"> | 
|   8     <div id = "host"> |   8     <div id = "host"> | 
|   9         <template> |   9         <template> | 
|  10             <input id="target" value="test"></div> |  10             <input id="target" value="test"></div> | 
|  11         </template> |  11         </template> | 
|  12     </div> |  12     </div> | 
|  13 </div> |  13 </div> | 
|  14  |  14  | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  54             assert_true(e.deepPath().includes(host)); |  54             assert_true(e.deepPath().includes(host)); | 
|  55             t.done(); |  55             t.done(); | 
|  56         }); |  56         }); | 
|  57     } |  57     } | 
|  58 }, 'Only certain trusted events should stop in bubbling.'); |  58 }, 'Only certain trusted events should stop in bubbling.'); | 
|  59  |  59  | 
|  60 target.select(); |  60 target.select(); | 
|  61 var userError = new Event('error'); |  61 var userError = new Event('error'); | 
|  62 target.dispatchEvent(userError); |  62 target.dispatchEvent(userError); | 
|  63 </script> |  63 </script> | 
| OLD | NEW |