• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<div>
2  <!-- event_Compiler_Test_001 -->
3  <div onclick="test"></div>
4
5  <!-- event_Compiler_Test_002 -->
6  <div onclick="test(value)"></div>
7
8  <!-- event_Compiler_Test_003 -->
9  <div onclick="test(value, time)"></div>
10
11  <!-- event_Compiler_Test_004 -->
12  <div @click="test"></div>
13
14  <!-- event_Compiler_Test_005 -->
15  <div @click="test(value)"></div>
16
17  <!-- event_Compiler_Test_006 -->
18  <div @click="test(value, time)"></div>
19
20  <!-- event_Compiler_Test_007 -->
21  <input @click="handleInput('(')" />
22
23  <!-- event_Compiler_Test_008 -->
24  <input @click="handleInput(')')" />
25
26  <!-- event_Compiler_Test_009 -->
27  <input @click="handleInput('(', value, time)" />
28
29  <!-- bubble&capture_event_Tests -->
30  <div ontouchstart="test1"></div>
31  <div @touchstart="test2"></div>
32  <div on:touchstart="test3"></div>
33  <div grab:touchstart="test4"></div>
34  <div @touchstart.bubble="test5"></div>
35  <div on:touchstart.bubble="test6"></div>
36  <div grab:touchstart.bubble="test7"></div>
37  <div on:touchstart.capture="test8"></div>
38  <div grab:touchstart.capture="test9"></div>
39</div>
40