This file is indexed.

/usr/share/javascript/yui3/node-event-html5/node-event-html5.js is in libjs-yui3-full 3.5.1-1ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
YUI 3.5.1 (build 22)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
YUI.add('node-event-html5', function(Y) {

/**
 * Adds HTML5 event support to Node.
 *
 * @module node
 * @submodule node-event-html5
 **/

Y.mix(Y.Node.DOM_EVENTS, {
    DOMActivate: 1,
    DOMContentLoaded: 1,
    afterprint: 1,
    beforeprint: 1,
    canplay: 1,
    canplaythrough: 1,
    durationchange: 1,
    emptied: 1,
    ended: 1,
    formchange: 1,
    forminput: 1,
    hashchange: 1,
    input: 1,
    invalid: 1,
    loadedmetadata: 1,
    loadeddata: 1,
    loadstart: 1,
    offline: 1,
    online: 1,
    pagehide: 1,
    pageshow: 1,
    pause: 1,
    play: 1,
    playing: 1,
    popstate: 1,
    progress: 1,
    ratechange: 1,
    readystatechange: 1,
    redo: 1,
    seeking: 1,
    seeked: 1,
    show: 1,
    stalled: 1,
    suspend: 1,
    timeupdate: 1,
    undo: 1,
    volumechange: 1,
    waiting: 1
});


}, '3.5.1' ,{requires:['node-base']});