Re: [whatwg/dom] Define mutation events (#305)

20 most commonly used scripts in httparchive that use the strings above (if somebody wants to analyze feasibility of changing timings or so):

Row | url | num
---|---|---
1 | https://s.ytimg.com/yts/jsbin/player-en_US-vflHuW2fm/base.js | 16661
2 | https://s.ytimg.com/yts/jsbin/player-en_US-vfld7sVQ3/base.js | 7987
3 | https://s.ytimg.com/yts/jsbin/player-en_US-vflua32tg/base.js | 3397
4 | https://s.ytimg.com/yts/jsbin/player-en_US-vflI2is8G/base.js | 1448
5 | https://tags.crwdcntrl.net/c/9234/cc.js?ns=_cc9234 | 1261
6 | http://imasdk.googleapis.com/js/sdkloader/ima3.js | 1221
7 | https://secure.flashtalking.com/frameworks/js/api/2/9/html5API.js | 756
8 | http://tags.crwdcntrl.net/c/9193/cc.js?ns=_cc9193 | 726
9 | http://s0.2mdn.net/instream/html5/ima3.js | 685
10 | http://prscripts.com/pub.js | 633
11 | https://www.fullstory.com/s/fs.js | 429
12 | http://imasdk.googleapis.com/js/core/bridge3.138.5_en.html | 394
13 | http://tags.crwdcntrl.net/c/8060/cc_af.js | 333
14 | http://tags.crwdcntrl.net/c/4575/cc_af.js | 327
15 | http://st.chatango.com/h5/gz/r0802161130/id.html | 320
16 | http://imasdk.googleapis.com/js/core/bridge3.137.0_en.html | 318
17 | https://secure.flashtalking.com/frameworks/js/api/2/8/html5API.js | 313
18 | https://choices.truste.com/ca?pid=ehi01&aid=moosylvania01&cid=0413&c=moosylvania01cont2&w=300&h=250&admarker=dynamic | 304
19 | https://choices.truste.com/ca?aid=tradedesk01&pid=tradedesk01&cid=10312015&w=728&h=90&c=tradedesk01cont1&js=pmw2 | 289
20 | http://st.chatango.com/h5/gz/r0805161606/id.html | 280

Query was

```
SELECT * FROM (
  SELECT page, url, REGEXP_EXTRACT(body, r'["\'](DOM(?:CharacterDataModified|Node(?:Inserted|Removed)(?:(?:Into|From)Document)?|SubtreeModified))["\']') AS ev
  FROM [httparchive:har.2016_08_01_chrome_requests_bodies]
) WHERE ev != "null"
ORDER BY ev
```

(result of this 88,540 rows, csv is 10.8MB, at https://gist.github.com/zcorpan/6e16e387cfc6cdf377944c7960a02884 )

```
SELECT url, COUNT(page) AS num FROM [test.mutation_events_2016_08_01] 
GROUP BY url
ORDER BY num DESC
LIMIT 20
```
(result above)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/305#issuecomment-241996089

Received on Wednesday, 24 August 2016 08:41:32 UTC