From 4911d61d78b2465eaffa14dc28fc378fed08f461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Wed, 28 Dec 2016 23:51:18 +0800 Subject: [PATCH] Fix invalid XML from the CLI xml reporter (#217) * Remove javascriptExecutionTree from the xml output * Change JSON structure for offenders classified by url * Remove special chars from XML output --- bin/cli.js | 23 +- front/src/views/rule.html | 6 +- lib/offendersHelpers.js | 19 +- test.json | 143985 +++++++++++++++++++++++++++++++++++ test.xml | 5182 ++ 5 files changed, 149204 insertions(+), 11 deletions(-) create mode 100644 test.json create mode 100644 test.xml diff --git a/bin/cli.js b/bin/cli.js index c9e398f..6777780 100644 --- a/bin/cli.js +++ b/bin/cli.js @@ -84,8 +84,27 @@ if (cli.flags.reporter && cli.flags.reporter !== 'json' && cli.flags.reporter != debug('Success'); switch(cli.flags.reporter) { case 'xml': - var serializer = new EasyXml(); - console.log(serializer.render(data)); + var serializer = new EasyXml({ + manifest: true + }); + + // Remove some heavy parts of the results object + delete data.toolsResults; + delete data.javascriptExecutionTree; + + var xmlOutput = serializer.render(data); + + // Remove special chars from XML tags: # [ ] + xmlOutput = xmlOutput.replace(/<([^>]*)#([^>]*)>/g, '<$1>'); + xmlOutput = xmlOutput.replace(/<([^>]*)\[([^>]*)>/g, '<$1>'); + xmlOutput = xmlOutput.replace(/<([^>]*)\]([^>]*)>/g, '<$1>'); + + // Remove special chars from text content: \n \0 + xmlOutput = xmlOutput.replace(/(<[a-zA-Z]*>[^<]*)\n([^<]*<\/[a-zA-Z]*>)/g, '$1$2'); + xmlOutput = xmlOutput.replace(/\0/g, ''); + xmlOutput = xmlOutput.replace(/\uFFFF/g, ''); + + console.log(xmlOutput); break; default: console.log(JSON.stringify(data, null, 2)); diff --git a/front/src/views/rule.html b/front/src/views/rule.html index 3e9c304..c71f58c 100644 --- a/front/src/views/rule.html +++ b/front/src/views/rule.html @@ -167,12 +167,12 @@ -
+

in - - inline CSS + + inline CSS

diff --git a/lib/offendersHelpers.js b/lib/offendersHelpers.js index fc4fef5..482deaf 100644 --- a/lib/offendersHelpers.js +++ b/lib/offendersHelpers.js @@ -207,24 +207,31 @@ var OffendersHelpers = function() { }; this.orderByFile = function(offenders) { - var byFile = {}; + var byFileObj = {}; offenders.forEach(function(offender) { var file = offender.file || 'Inline CSS'; delete offender.file; - if (!byFile[file]) { - byFile[file] = { + if (!byFileObj[file]) { + byFileObj[file] = { + url: file, count: 0, offenders: [] }; } - byFile[file].count ++; - byFile[file].offenders.push(offender); + byFileObj[file].count ++; + byFileObj[file].offenders.push(offender); }); - return {byFile: byFile}; + // Transform object into array + var byFileArray = []; + for (var file in byFileObj) { + byFileArray.push(byFileObj[file]); + } + + return {byFile: byFileArray}; }; }; diff --git a/test.json b/test.json new file mode 100644 index 0000000..e3b3670 --- /dev/null +++ b/test.json @@ -0,0 +1,143985 @@ +{ + "params": { + "url": "http://pluzz.francetv.fr", + "options": { + "device": "desktop", + "waitForSelector": null, + "proxy": null, + "cookie": null, + "authUser": null, + "authPass": null + } + }, + "toolsResults": { + "phantomas": { + "generator": "phantomas v1.18.0", + "url": "http://pluzz.francetv.fr/", + "metrics": { + "requests": 184, + "gzipRequests": 43, + "postRequests": 0, + "httpsRequests": 13, + "notFound": 0, + "bodySize": 626901, + "contentLength": 804536, + "httpTrafficCompleted": 29064, + "timeToFirstByte": 2137, + "timeToLastByte": 2174, + "cssParsingErrors": 0, + "cssInlineStyles": 0, + "htmlCount": 36, + "htmlSize": 104550, + "cssCount": 5, + "cssSize": 115521, + "jsCount": 41, + "jsSize": 262927, + "jsonCount": 0, + "jsonSize": 0, + "imageCount": 66, + "imageSize": 275221, + "videoCount": 0, + "videoSize": 0, + "webfontCount": 1, + "webfontSize": 21240, + "base64Count": 1, + "base64Size": 37, + "otherCount": 35, + "otherSize": 25077, + "cacheHits": 9, + "cacheMisses": 1, + "cachePasses": 0, + "cachingNotSpecified": 16, + "cachingTooShort": 23, + "cachingDisabled": 41, + "oldCachingHeaders": 236, + "consoleMessages": 2, + "cookiesSent": 0, + "cookiesRecv": 26695, + "domainsWithCookies": 35, + "documentCookiesLength": 245, + "documentCookiesCount": 9, + "documentHeight": 2953, + "commentsSize": 176, + "whiteSpacesSize": 1025, + "DOMelementsCount": 1950, + "DOMelementMaxDepth": 15, + "nodesWithInlineCSS": 65, + "imagesScaledDown": 0, + "imagesWithoutDimensions": 30, + "DOMidDuplicated": 3, + "domains": 66, + "maxRequestsPerDomain": 15, + "medianRequestsPerDomain": 2, + "globalVariables": 148, + "globalVariablesFalsy": 2, + "headersCount": 2443, + "headersSentCount": 564, + "headersRecvCount": 1879, + "headersSize": 130393, + "headersSentSize": 36533, + "headersRecvSize": 93860, + "headersBiggerThanContent": 107, + "closedConnections": 5, + "localStorageEntries": 44, + "redirects": 56, + "redirectsTime": 77691, + "repaints": 0, + "firstPaint": 0, + "requestsToFirstPaint": 0, + "domainsToFirstPaint": 0, + "requestsToDomContentLoaded": 8, + "domainsToDomContentLoaded": 2, + "requestsToDomComplete": 0, + "domainsToDomComplete": 0, + "assetsNotGzipped": 15, + "assetsWithQueryString": 68, + "assetsWithCookies": 42, + "smallImages": 46, + "smallCssFiles": 1, + "smallJsFiles": 28, + "multipleRequests": 2, + "timeToFirstCss": 2313, + "timeToFirstJs": 2478, + "timeToFirstImage": 4470, + "ajaxRequests": 0, + "synchronousXHR": 0, + "hiddenContentSize": 64955, + "hiddenImages": 0, + "DOMqueries": 832, + "DOMqueriesWithoutResults": 49, + "DOMqueriesById": 86, + "DOMqueriesByClassName": 2, + "DOMqueriesByTagName": 721, + "DOMqueriesByQuerySelectorAll": 23, + "DOMinserts": 192, + "DOMqueriesDuplicated": 28, + "DOMqueriesAvoidable": 373, + "eventsBound": 187, + "eventsDispatched": 0, + "eventsScrollBound": 1, + "jQueryVersion": "1.8.3+1", + "jQueryVersionsLoaded": 2, + "jQueryOnDOMReadyFunctions": 16, + "jQueryWindowOnLoadFunctions": 2, + "jQuerySizzleCalls": 69, + "jQueryEventTriggers": 0, + "documentWriteCalls": 0, + "evalCalls": 0, + "jsErrors": 0, + "lazyLoadableImagesBelowTheFold": 6, + "domInteractive": 1744, + "domContentLoaded": 3925, + "domContentLoadedEnd": 2301, + "domComplete": 0, + "timeBackend": 100, + "timeFrontend": 0, + "requestsWithTimeout": 6, + "statusCodesTrail": "200", + "cssBase64Length": 2108, + "cssRedundantBodySelectors": 0, + "cssRedundantChildNodesSelectors": 4, + "cssColors": 89, + "cssComments": 1, + "cssCommentsLength": 208, + "cssComplexSelectors": 107, + "cssDuplicatedSelectors": 24, + "cssDuplicatedProperties": 4, + "cssEmptyRules": 0, + "cssExpressions": 0, + "cssOldIEFixes": 3, + "cssImports": 0, + "cssImportants": 27, + "cssMediaQueries": 4, + "cssNotMinified": 0, + "cssMultiClassesSelectors": 223, + "cssOldPropertyPrefixes": 39, + "cssPropertyResets": 0, + "cssQualifiedSelectors": 248, + "cssSpecificityIdAvg": 0.6759999999999999, + "cssSpecificityIdTotal": 692, + "cssSpecificityClassAvg": 1.4919999999999998, + "cssSpecificityClassTotal": 2840, + "cssSpecificityTagAvg": 0.6439999999999999, + "cssSpecificityTagTotal": 749, + "cssSelectors": 1898, + "cssSelectorLengthAvg": 2.2961536794082265, + "cssSelectorsByAttribute": 8, + "cssSelectorsByClass": 2308, + "cssSelectorsById": 692, + "cssSelectorsByPseudo": 299, + "cssSelectorsByTag": 727, + "cssLength": 121150, + "cssRules": 1379, + "cssDeclarations": 3688, + "windowAlerts": 0, + "windowConfirms": 0, + "windowPrompts": 0, + "bodyHTMLSize": 121238, + "iframesCount": 9, + "smallestResponse": 0, + "biggestResponse": 96214, + "fastestResponse": 113, + "slowestResponse": 3827, + "smallestLatency": 113, + "biggestLatency": 3826, + "medianResponse": 658, + "medianLatency": 611, + "differentCharacters": 88 + }, + "offenders": { + "gzipRequests": [ + "http://pluzz.francetv.fr/ (gzip: 18.39 kB / uncompressed: 18.39 kB)", + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css (gzip: 89.45 kB / uncompressed: 89.45 kB)", + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js (gzip: 93.96 kB / uncompressed: 93.96 kB)", + "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js (gzip: 82.37 kB / uncompressed: 82.37 kB)", + "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css (gzip: 8.57 kB / uncompressed: 8.57 kB)", + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css (gzip: 1.62 kB / uncompressed: 1.62 kB)", + "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js (gzip: 2.55 kB / uncompressed: 2.55 kB)", + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js (gzip: 1.88 kB / uncompressed: 1.88 kB)", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY (gzip: 1.02 kB / uncompressed: 1.02 kB)", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007 (gzip: 2.40 kB / uncompressed: 2.40 kB)", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 (gzip: 1.49 kB / uncompressed: 1.49 kB)", + "http://static.francetv.fr/pom/audience/audience.min.js (gzip: 1.90 kB / uncompressed: 1.90 kB)", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css (gzip: 9.33 kB / uncompressed: 9.33 kB)", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= (gzip: 0.86 kB / uncompressed: 0.86 kB)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js (gzip: 1.71 kB / uncompressed: 1.71 kB)", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste (gzip: 3.86 kB / uncompressed: 3.86 kB)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js (gzip: 1.91 kB / uncompressed: 1.91 kB)", + "http://cdn.krxd.net/controltag/J1mXKWTY.js (gzip: 1.02 kB / uncompressed: 1.02 kB)", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js (gzip: 1.66 kB / uncompressed: 1.66 kB)", + "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js (gzip: 3.79 kB / uncompressed: 3.79 kB)", + "http://static.francetv.fr/pom/publicite/publicite.min.js (gzip: 1.57 kB / uncompressed: 1.57 kB)", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css (gzip: 3.84 kB / uncompressed: 3.84 kB)", + "http://www.google-analytics.com/analytics.js (gzip: 1.61 kB / uncompressed: 1.61 kB)", + "http://cdn.tradelab.fr/tag/59763bfbc2.js (gzip: 1.87 kB / uncompressed: 1.87 kB)", + "http://cdn.tradelab.fr/seg.js?add=494671 (gzip: 2.71 kB / uncompressed: 2.71 kB)", + "http://cdn.tradelab.fr/seg.js?add=577824 (gzip: 2.71 kB / uncompressed: 2.71 kB)", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? (gzip: 0.19 kB / uncompressed: 0.19 kB)", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? (gzip: 0.19 kB / uncompressed: 0.19 kB)", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg (gzip: 0.32 kB / uncompressed: 0.32 kB)", + "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js (gzip: 2.90 kB / uncompressed: 2.90 kB)", + "http://ad2play.ftv-publicite.fr/sticky.ads? (gzip: NaN kB / uncompressed: NaN kB)", + "http://ads.rubiconproject.com/ad/9585.js (gzip: 7.44 kB / uncompressed: 7.44 kB)", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (gzip: 0.84 kB / uncompressed: 0.84 kB)", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata (gzip: 0.24 kB / uncompressed: 0.24 kB)", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B (gzip: 6.22 kB / uncompressed: 6.22 kB)", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr (gzip: 1.83 kB / uncompressed: 1.83 kB)", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20 (gzip: 2.08 kB / uncompressed: 2.08 kB)", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph (gzip: 29.64 kB / uncompressed: 29.64 kB)", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph (gzip: 29.64 kB / uncompressed: 29.64 kB)", + "https://c.algovid.com/player/cedato_player_108.22_d.js (gzip: 8.52 kB / uncompressed: 8.52 kB)", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y (gzip: 0.38 kB / uncompressed: 0.38 kB)", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20 (gzip: 17.63 kB / uncompressed: 17.63 kB)", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20 (gzip: 24.44 kB / uncompressed: 24.44 kB)" + ], + "httpsRequests": [ + "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1", + "https://c.algovid.com/player/cedato_player_108.22_d.js" + ], + "htmlCount": [ + "http://pluzz.francetv.fr/ (size: 18.39 kB, latency: 2137 ms)", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= (size: 0.86 kB, latency: 173 ms)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121 (size: 0.36 kB, latency: 270 ms)", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? (size: 0.19 kB, latency: 480 ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/seg?add=494671&t=2 (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/seg?add=577824&t=2 (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync (size: 0.00 kB, latency: undefined ms)", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? (size: 0.19 kB, latency: 793 ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (size: 0.00 kB, latency: undefined ms)", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc (size: 0.31 kB, latency: 330 ms)", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg (size: 0.32 kB, latency: 806 ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (size: 0.00 kB, latency: undefined ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (size: 0.29 kB, latency: 1025 ms)", + "http://ad2play.ftv-publicite.fr/sticky.ads? (size: NaN kB, latency: undefined ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (size: 0.29 kB, latency: 1097 ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (size: 0.29 kB, latency: 412 ms)", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID (size: 0.00 kB, latency: undefined ms)", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605 (size: 0.36 kB, latency: 6711 ms)", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20 (size: 2.08 kB, latency: 145 ms)", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph (size: 29.64 kB, latency: 526 ms)", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph (size: 29.64 kB, latency: 456 ms)", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc (size: 0.32 kB, latency: 607 ms)", + "http://match.adsrvr.org/track/cmf/rubicon (size: 0.11 kB, latency: 1001 ms)", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y (size: 0.38 kB, latency: 1564 ms)", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20 (size: 17.63 kB, latency: 170 ms)", + "http://sync.1rx.io/usersync2/rubicon (size: NaN kB, latency: undefined ms)", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1 (size: 0.17 kB, latency: 210 ms)", + "http://tags.bluekai.com/site/6123?redir=http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=$_BK_UUID (size: 0.00 kB, latency: undefined ms)", + "http://sync.extend.tv/r.gif?exchange=rubicon (size: 0.13 kB, latency: 2972 ms)", + "http://rtb-rubicon-user-sync.virool.com/rubicon_user_sync (size: 0.15 kB, latency: 3030 ms)", + "http://sync.1rx.io/usersync/tradedesk/e6921f7e-568b-4755-ae3d-d0c43b1ec7db (size: NaN kB, latency: undefined ms)", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W= (size: 0.00 kB, latency: undefined ms)", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 (size: 0.00 kB, latency: undefined ms)" + ], + "cssCount": [ + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css (size: 89.45 kB, latency: 143 ms)", + "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css (size: 8.57 kB, latency: 952 ms)", + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css (size: 1.62 kB, latency: 958 ms)", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css (size: 9.33 kB, latency: 696 ms)", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css (size: 3.84 kB, latency: 717 ms)" + ], + "jsCount": [ + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js (size: 93.96 kB, latency: 313 ms)", + "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js (size: 82.37 kB, latency: 316 ms)", + "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js (size: 2.55 kB, latency: 635 ms)", + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js (size: 1.88 kB, latency: 631 ms)", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY (size: 1.02 kB, latency: 670 ms)", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007 (size: 2.40 kB, latency: 726 ms)", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 (size: 1.49 kB, latency: 162 ms)", + "http://static.francetv.fr/pom/audience/audience.min.js (size: 1.90 kB, latency: 671 ms)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js (size: 1.71 kB, latency: 148 ms)", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste (size: 3.86 kB, latency: 1627 ms)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js (size: 1.91 kB, latency: 192 ms)", + "http://cdn.krxd.net/controltag/J1mXKWTY.js (size: 1.02 kB, latency: 228 ms)", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js (size: 1.66 kB, latency: 228 ms)", + "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js (size: 3.79 kB, latency: 201 ms)", + "http://static.francetv.fr/pom/publicite/publicite.min.js (size: 1.57 kB, latency: 196 ms)", + "http://www.google-analytics.com/analytics.js (size: 1.61 kB, latency: 778 ms)", + "http://cdn.tradelab.fr/tag/59763bfbc2.js (size: 1.87 kB, latency: 959 ms)", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (size: 0.16 kB, latency: 689 ms)", + "http://cdn.tradelab.fr/seg.js?add=494671 (size: 2.71 kB, latency: 274 ms)", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp (size: 1.82 kB, latency: 1240 ms)", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus (size: 1.68 kB, latency: 1593 ms)", + "http://cdn.tradelab.fr/seg.js?add=577824 (size: 2.71 kB, latency: 479 ms)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (size: 0.05 kB, latency: 496 ms)", + "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js (size: 2.90 kB, latency: 426 ms)", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee (size: 5.89 kB, latency: 1745 ms)", + "http://ads.rubiconproject.com/ad/9585.js (size: 7.44 kB, latency: 302 ms)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 (size: 0.06 kB, latency: 708 ms)", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (size: 0.84 kB, latency: 3826 ms)", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 (size: 1.29 kB, latency: 854 ms)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 (size: 0.06 kB, latency: 174 ms)", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 (size: 1.68 kB, latency: 273 ms)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 (size: 0.06 kB, latency: 152 ms)", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 (size: 1.89 kB, latency: 475 ms)", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata (size: 0.24 kB, latency: 534 ms)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 (size: 0.06 kB, latency: 199 ms)", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 (size: 1.85 kB, latency: 463 ms)", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B (size: 6.22 kB, latency: 638 ms)", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr (size: 1.83 kB, latency: 1428 ms)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (size: 0.09 kB, latency: 3609 ms)", + "https://c.algovid.com/player/cedato_player_108.22_d.js (size: 8.52 kB, latency: 1255 ms)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (size: 0.17 kB, latency: 3112 ms)" + ], + "imageCount": [ + "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png (size: 19.57 kB, latency: 631 ms)", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png (size: 23.47 kB, latency: 634 ms)", + "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png (size: 5.61 kB, latency: 586 ms)", + "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png (size: 3.76 kB, latency: 573 ms)", + "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png (size: 2.21 kB, latency: 573 ms)", + "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png (size: 2.36 kB, latency: 641 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg (size: 12.57 kB, latency: 934 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg (size: 28.25 kB, latency: 940 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg (size: 7.40 kB, latency: 1729 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg (size: 5.77 kB, latency: 1798 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg (size: 3.30 kB, latency: 1926 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg (size: 7.20 kB, latency: 1962 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg (size: 6.46 kB, latency: 1159 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg (size: 11.13 kB, latency: 1426 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg (size: 25.13 kB, latency: 1655 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg (size: 14.17 kB, latency: 1165 ms)", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 (size: 0.04 kB, latency: 764 ms)", + "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png (size: 13.04 kB, latency: 146 ms)", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView (size: 0.04 kB, latency: 1054 ms)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 (size: 0.03 kB, latency: 470 ms)", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (size: 0.04 kB, latency: 206 ms)", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg (size: 37.96 kB, latency: 323 ms)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (size: 0.04 kB, latency: 273 ms)", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 (size: 0.03 kB, latency: 822 ms)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (size: 0.04 kB, latency: 240 ms)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (size: 0.04 kB, latency: 878 ms)", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 (size: 0.04 kB, latency: 276 ms)", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg (size: 5.19 kB, latency: 176 ms)", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif (size: 0.04 kB, latency: 591 ms)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (size: 0.04 kB, latency: 2156 ms)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (size: 0.04 kB, latency: 480 ms)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (size: 0.04 kB, latency: 480 ms)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (size: 0.04 kB, latency: 2041 ms)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (size: 0.04 kB, latency: 1927 ms)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 (size: 0.04 kB, latency: 951 ms)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (size: 0.00 kB, latency: undefined ms)", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y (size: 0.04 kB, latency: 577 ms)", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540 (size: 0.00 kB, latency: undefined ms)", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 (size: 0.04 kB, latency: 383 ms)", + "http://sync.mathtag.com/sync/img?mt_exid=9 (size: 0.00 kB, latency: undefined ms)", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee (size: 0.04 kB, latency: 725 ms)", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (size: 0.04 kB, latency: 306 ms)", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (size: 0.04 kB, latency: 496 ms)", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (size: 0.04 kB, latency: 212 ms)", + "http://rc.d.chango.com/m/rc (size: 0.03 kB, latency: 1381 ms)", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 (size: 0.04 kB, latency: 187 ms)", + "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg (size: 32.49 kB, latency: 1067 ms)", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (size: 0.09 kB, latency: 519 ms)", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 (size: 0.04 kB, latency: 187 ms)", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (size: 0.04 kB, latency: 191 ms)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (size: 0.04 kB, latency: 186 ms)", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0 (size: 0.04 kB, latency: 815 ms)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon (size: 0.00 kB, latency: undefined ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (size: 0.04 kB, latency: 818 ms)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (size: 0.00 kB, latency: undefined ms)", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (size: 0.04 kB, latency: 113 ms)", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (size: 0.04 kB, latency: 136 ms)", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (size: 0.04 kB, latency: 204 ms)", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (size: 0.04 kB, latency: 154 ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (size: 0.04 kB, latency: 464 ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (size: 0.04 kB, latency: 489 ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w (size: 0.04 kB, latency: 2447 ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (size: 0.04 kB, latency: 644 ms)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (size: 0.04 kB, latency: 650 ms)", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (size: 0.04 kB, latency: 174 ms)", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (size: 0.04 kB, latency: 230 ms)" + ], + "webfontCount": [ + "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff (size: 20.74 kB, latency: 579 ms)" + ], + "otherCount": [ + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0 (size: 0.00 kB, latency: undefined ms)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref= (size: 0.00 kB, latency: undefined ms)", + "http://ads.stickyadstv.com/auto-user-sync (size: 0.00 kB, latency: undefined ms)", + "http://ads.stickyadstv.com/cookie-forwarding?id=91 (size: 0.00 kB, latency: undefined ms)", + "http://its.tradelab.fr/?type=tp&advid=94597&adata=%7B%22c%22%3A%7B%22ref_url%22%3A%22%22%2C%22ref_ts%22%3A1482935762%2C%22page_url%22%3A%22pluzz.francetv.fr%2F%22%2C%22dm%22%3A%22francetv.fr%22%7D%2C%22v%22%3A%7B%22vis_cnt%22%3A1%2C%22frst_vis_ts%22%3A1482935762%2C%22prev_vis_ts%22%3A1482935762%2C%22curr_vis_ts%22%3A1482935762%2C%22total_page_cnt%22%3A1%2C%22prev_page_cnt%22%3A1%2C%22curr_page_cnt%22%3A1%7D%7D (size: NaN kB, latency: undefined ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1 (size: 0.00 kB, latency: undefined ms)", + "http://its.tradelab.fr/?type=seg&uuid2=7863569432388688190&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F (size: NaN kB, latency: undefined ms)", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D (size: NaN kB, latency: undefined ms)", + "http://its.tradelab.fr/?type=seg&uuid2=2974760119062136432&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F (size: NaN kB, latency: undefined ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775 (size: 0.00 kB, latency: undefined ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432 (size: 0.00 kB, latency: undefined ms)", + "http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D (size: 0.00 kB, latency: undefined ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595 (size: 0.00 kB, latency: undefined ms)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (size: 0.00 kB, latency: undefined ms)", + "http://tap.rubiconproject.com/oz/feeds/krux/tokens?afu=K-w5dKy1 (size: 0.00 kB, latency: undefined ms)", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000 (size: 0.00 kB, latency: undefined ms)", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000 (size: 0.00 kB, latency: undefined ms)", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102 (size: 0.00 kB, latency: undefined ms)", + "http://token.rubiconproject.com/token?pid=2974&pt=n&a=1 (size: NaN kB, latency: undefined ms)", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1 (size: NaN kB, latency: undefined ms)", + "http://token.rubiconproject.com/token?pid=37556&a=1 (size: 0.00 kB, latency: undefined ms)", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1 (size: 0.00 kB, latency: undefined ms)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1 (size: 0.00 kB, latency: undefined ms)", + "http://sync.ipredictive.com/d/sync/cookie/generic?http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=$%7BADELPHIC_CUID%7D&expires=30 (size: 0.00 kB, latency: undefined ms)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 (size: 0.00 kB, latency: undefined ms)", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20 (size: 24.44 kB, latency: 1095 ms)", + "http://rubicon-match.dotomi.com/rubicon/match?nuid= (size: 0.00 kB, latency: undefined ms)", + "http://bidi-geo.mythings.com/bidi/rubicon (size: 0.00 kB, latency: undefined ms)", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1 (size: 0.00 kB, latency: undefined ms)", + "http://rp.gwallet.com/r1/cm/p29 (size: 0.00 kB, latency: undefined ms)", + "http://map.media6degrees.com/orbserv/hbpix?pixId=4857 (size: 0.04 kB, latency: 3025 ms)", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie (size: 0.00 kB, latency: undefined ms)", + "http://s3.algovid.com/ppx/starti?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&cb=1482935772728 (size: NaN kB, latency: undefined ms)", + "http://s3.algovid.com/ppx/errori?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&en=6&em=No%20video%20or%20JSV%20support&cb=1482935772730 (size: NaN kB, latency: undefined ms)", + "http://rubicon-match.dotomi.com/rubicon/match?dtm_test=6b2c354a0e830948&nuid= (size: 0.00 kB, latency: undefined ms)" + ], + "cacheHits": [ + "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp=", + "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "http://www.google-analytics.com/analytics.js", + "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "http://cdn.tradelab.fr/seg.js?add=494671", + "http://cdn.tradelab.fr/seg.js?add=577824", + "https://c.algovid.com/player/cedato_player_108.22_d.js" + ], + "cacheMisses": [ + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata" + ], + "cachingNotSpecified": [ + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w" + ], + "cachingTooShort": [ + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png cached for 86400 s", + "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png cached for 86400 s", + "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png cached for 86400 s", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY cached for 1200 s", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007 cached for 578693 s", + "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png cached for 86400 s", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste cached for 274 s", + "http://cdn.krxd.net/controltag/J1mXKWTY.js cached for 1200 s", + "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png cached for 23529 s", + "http://www.google-analytics.com/analytics.js cached for 7200 s", + "http://cdn.tradelab.fr/tag/59763bfbc2.js cached for 300 s", + "http://cdn.tradelab.fr/seg.js?add=494671 cached for 300 s", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp cached for 532 s", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus cached for 404 s", + "http://cdn.tradelab.fr/seg.js?add=577824 cached for 300 s", + "http://ads.rubiconproject.com/ad/9585.js cached for 7544 s", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 cached for 3600 s", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 cached for 3600 s", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 cached for 3600 s", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata cached for 1800 s", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 cached for 3599 s", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B cached for 172800 s", + "https://c.algovid.com/player/cedato_player_108.22_d.js cached for 3600 s" + ], + "cachingDisabled": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://sync.mathtag.com/sync/img?mt_exid=9", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "http://rc.d.chango.com/m/rc", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA" + ], + "oldCachingHeaders": [ + "http://pluzz.francetv.fr/ - Expires: Wed, 28 Dec 2016 14:40:20 GMT", + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css - Expires: Wed, 29 Nov 2017 13:52:22 GMT", + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js - Expires: Thu, 28 Dec 2017 04:51:04 GMT", + "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js - Expires: Thu, 28 Dec 2017 04:51:02 GMT", + "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css - Expires: Tue, 24 Jan 2017 02:20:23 GMT", + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css - Expires: Mon, 23 Jan 2017 08:51:40 GMT", + "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js - Expires: Wed, 20 Dec 2017 14:32:53 GMT", + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js - Expires: Wed, 29 Nov 2017 13:52:24 GMT", + "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png - Expires: Wed, 29 Nov 2017 13:52:49 GMT", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png - Expires: Wed, 28 Dec 2016 06:38:47 GMT", + "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png - Expires: Fri, 15 Dec 2017 14:01:23 GMT", + "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png - Expires: Thu, 29 Dec 2016 06:44:41 GMT", + "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png - Expires: Thu, 29 Dec 2016 01:14:29 GMT", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007 - Expires: Wed, 04 Jan 2017 07:20:53 GMT", + "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff - Expires: Sun, 17 Dec 2017 03:09:53 GMT", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 - Expires: Fri, 04 Dec 2026 18:01:58 GMT", + "http://static.francetv.fr/pom/audience/audience.min.js - Expires: Thu, 12 Jan 2017 16:37:31 GMT", + "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png - Expires: Thu, 29 Dec 2016 07:04:04 GMT", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css - Expires: Mon, 16 Jan 2017 07:32:58 GMT", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= - Expires: Fri, 04 Dec 2026 18:01:37 GMT", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js - Expires: Tue, 24 Jan 2017 01:16:21 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg - Expires: Thu, 28 Dec 2017 13:33:06 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg - Expires: Thu, 28 Dec 2017 13:32:21 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg - Expires: Thu, 28 Dec 2017 14:35:03 GMT", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste - Expires: Wed, 28 Dec 2016 14:40:35 GMT", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js - Expires: Mon, 23 Jan 2017 06:37:55 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg - Expires: Thu, 28 Dec 2017 13:44:50 GMT", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js - Expires: Thu, 12 Jan 2017 16:37:37 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg - Expires: Thu, 28 Dec 2017 14:22:03 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg - Expires: Thu, 28 Dec 2017 13:32:28 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg - Expires: Thu, 28 Dec 2017 13:32:45 GMT", + "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js - Expires: Tue, 24 Jan 2017 02:59:41 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg - Expires: Thu, 28 Dec 2017 13:33:20 GMT", + "http://static.francetv.fr/pom/publicite/publicite.min.js - Expires: Fri, 13 Jan 2017 23:52:26 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg - Expires: Thu, 28 Dec 2017 13:33:00 GMT", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css - Expires: Mon, 16 Jan 2017 07:32:58 GMT", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg - Expires: Thu, 28 Dec 2017 13:33:24 GMT", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 - Pragma: no-cache", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png - Expires: Wed, 28 Dec 2016 21:08:10 GMT", + "http://www.google-analytics.com/analytics.js - Expires: Wed, 28 Dec 2016 15:13:32 GMT", + "http://cdn.tradelab.fr/tag/59763bfbc2.js - Expires: Wed, 28 Dec 2016 14:41:01 GMT", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView - Expires: Wed, 28 Dec 2016 14:36:02 GMT", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121 - Pragma: no-cache", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121 - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0 - Pragma: no-cache", + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0 - Expires: Thu, 01 Jan 1970 00:00:00 GMT", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 - Expires: 0", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 - Pragma: no-cache", + "http://cdn.tradelab.fr/seg.js?add=494671 - Expires: Wed, 28 Dec 2016 14:41:02 GMT", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 - Pragma: no-cache", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp - Expires: Wed, 28 Dec 2016 14:44:54 GMT", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus - Expires: Wed, 28 Dec 2016 14:42:46 GMT", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw - Pragma: no-cache", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw - Expires: Thu, 01 Jan 1970 00:00:00 GMT", + "http://cdn.tradelab.fr/seg.js?add=577824 - Expires: Wed, 28 Dec 2016 14:41:02 GMT", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? - Expires: Wed, 28 Dec 2016 14:36:02 GMT", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync - Pragma: no-cache", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ib.adnxs.com/seg?add=494671&t=2 - Pragma: no-cache", + "http://ib.adnxs.com/seg?add=494671&t=2 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F - Pragma: no-cache", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ads.stickyadstv.com/auto-user-sync - Pragma: no-cache", + "http://ads.stickyadstv.com/cookie-forwarding?id=91 - Pragma: no-cache", + "http://ib.adnxs.com/seg?add=577824&t=2 - Pragma: no-cache", + "http://ib.adnxs.com/seg?add=577824&t=2 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync - Pragma: no-cache", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? - Expires: Wed, 28 Dec 2016 14:36:02 GMT", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg - Expires: Mon, 02 Jan 2017 13:57:20 GMT", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 - Pragma: no-cache", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F - Pragma: no-cache", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 - Pragma: no-cache", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc - Pragma: no-cache", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 - Pragma: no-cache", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg - Expires: Wed, 28 Dec 2016 14:40:32 GMT", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync - Pragma: no-cache", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1 - Pragma: no-cache", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F - Pragma: no-cache", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 - Pragma: no-cache", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js - Expires: Sat, 14 Jan 2017 18:53:07 GMT", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F - Pragma: no-cache", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Pragma: no-cache", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee - Pragma: no-cache", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee - Expires: Tue, 25 Apr 1995 09:30:27 -0700", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg - Pragma: public", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg - Expires: Thu, 28 Dec 2017 03:09:50 GMT", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D - Pragma: no-cache", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D - Expires: Thu, 01 Jan 1970 00:00:00 GMT", + "http://ad2play.ftv-publicite.fr/sticky.ads? - Expires: Thu, 29 Dec 2016 02:36:04 GMT", + "http://ads.rubiconproject.com/ad/9585.js - Expires: Wed, 28 Dec 2016 16:41:48 GMT", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775 - Pragma: no-cache", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Pragma: no-cache", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Pragma: no-cache", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID - Pragma: no-cache", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432 - Pragma: no-cache", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 - Expires: Wed, 28 Dec 2016 15:36:05 GMT", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 - Expires: Wed, 18 Feb 2009 11:53:30 GMT", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 - Pragma: no-cache", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 - Pragma: no-cache", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 - Expires: Wed, 17 Sep 1975 21:32:10 GMT", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 - Expires: Wed, 28 Dec 2016 15:36:06 GMT", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 - Pragma: no-cache", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595 - Pragma: no-cache", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 - Expires: Wed, 17 Sep 1975 21:32:10 GMT", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 - Pragma: no-cache", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 - Expires: Wed, 28 Dec 2016 15:36:07 GMT", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 - Expires: Wed, 17 Sep 1975 21:32:10 GMT", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 - Expires: Wed, 28 Dec 2016 15:36:07 GMT", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D - Expires: Wed, 28 Dec 2016 14:36:06 GMT", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 - Pragma: no-cache", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 - Expires: Wed, 17 Sep 1975 21:32:10 GMT", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605 - Expires: Wed, 28 Dec 2016 14:36:08 GMT", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B - Expires: Fri, 30 Dec 2016 14:36:08 GMT", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y - Pragma: no-cache", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr - Expires: Wed, 28 Dec 2016 14:36:09 GMT", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 - Expires: 0", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000 - pragma: no-cache", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000 - expires: 0", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 - Expires: 0", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph - Expires: Wed, 28 Dec 2016 19:31:36 GMT", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000 - pragma: no-cache", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000 - expires: 0", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102 - Pragma: no-cache", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102 - Expires: Thu, 01 Jan 1970 00:00:00 GMT", + "http://sync.mathtag.com/sync/img?mt_exid=9 - Expires: Wed, 28 Dec 2016 14:36:10 GMT", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph - Expires: Wed, 28 Dec 2016 17:07:40 GMT", + "http://token.rubiconproject.com/token?pid=2974&pt=n&a=1 - Pragma: no-cache", + "http://token.rubiconproject.com/token?pid=2974&pt=n&a=1 - Expires: 0", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc - Pragma: no-cache", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc - Expires: Fri, 01 Jan 1990 00:00:00 GMT", + "http://match.adsrvr.org/track/cmf/rubicon - Pragma: no-cache", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1 - Pragma: no-cache", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1 - Expires: 0", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee - Pragma: no-cache", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee - Expires: Tue, 25 Apr 1995 09:30:27 -0700", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 - Expires: 0", + "http://token.rubiconproject.com/token?pid=37556&a=1 - Pragma: no-cache", + "http://token.rubiconproject.com/token?pid=37556&a=1 - Expires: 0", + "https://c.algovid.com/player/cedato_player_108.22_d.js - Pragma: public,public", + "https://c.algovid.com/player/cedato_player_108.22_d.js - Expires: Wed, 21 Dec 2016 22:58:14 GMT", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1 - Pragma: no-cache", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1 - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 - Expires: 0", + "http://rc.d.chango.com/m/rc - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 - Expires: 0", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1 - Pragma: no-cache", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1 - Expires: Wed, 28 Dec 2016 14:36:13 GMT", + "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg - Expires: Tue, 26 Dec 2017 17:20:51 GMT", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y - Pragma: no-cache", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 - Pragma: no-cache", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 - Expires: Wed, 28 Dec 2016 14:36:13 GMT", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 - Expires: 0", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20 - Pragma: no-cache", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20 - Expires: Wed, 31 Dec 1969 23:59:59 GMT", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 - Expires: 0", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0 - Pragma: no-cache", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon - Pragma: no-cache", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon - Expires: Thu, 23 Sep 2004 17:42:04 GMT", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w - Pragma: no-cache", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1 - Pragma: no-cache", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1 - Expires: Tue, 11 Oct 1977 12:34:56 GMT", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1 - Pragma: no-cache", + "http://rp.gwallet.com/r1/cm/p29 - Pragma: no-cache", + "http://rp.gwallet.com/r1/cm/p29 - Expires: Tue, 29 Oct 2002 19:50:44 GMT", + "http://sync.extend.tv/r.gif?exchange=rubicon - Expires: Tue, 29 May 1984 15:00:00 GMT", + "http://sync.extend.tv/r.gif?exchange=rubicon - Pragma: no-cache", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon - Pragma: no-cache", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon - Expires: Thu, 23 Sep 2004 17:42:04 GMT", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie - Pragma: no-cache", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie - Expires: Tue, 29 Oct 2002 19:50:44 GMT", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 - Expires: 0", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W= - Expires: Thu, 29 Dec 2016 14:36:15 GMT", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 - Expires: 0", + "http://s3.algovid.com/ppx/starti?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&cb=1482935772728 - Pragma: no-cache", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w - Pragma: no-cache", + "http://s3.algovid.com/ppx/errori?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&en=6&em=No%20video%20or%20JSV%20support&cb=1482935772730 - Pragma: no-cache", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w - Pragma: no-cache", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w - Pragma: no-cache", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w - Pragma: no-cache", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w - Pragma: no-cache", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 - Pragma: no-cache", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 - Expires: Sat, 15 Nov 2008 16:00:00 GMT", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 - Expires: 0", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA - Pragma: no-cache", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA - Expires: 0" + ], + "domainsWithCookies": [ + "googleads.g.doubleclick.net: 1 cookie(s)", + "www.facebook.com: 1 cookie(s)", + "pix04.revsci.net: 10 cookie(s)", + "pq-direct.revsci.net: 1 cookie(s)", + "4610658.fls.doubleclick.net: 3 cookie(s)", + "ib.adnxs.com: 29 cookie(s)", + "logc238.xiti.com: 1 cookie(s)", + "ads.stickyadstv.com: 25 cookie(s)", + "5110145.fls.doubleclick.net: 3 cookie(s)", + "its.tradelab.fr: 18 cookie(s)", + "pub.ftv-publicite.fr: 2 cookie(s)", + "rtd.tubemogul.com: 1 cookie(s)", + "lpm-francetv.nuggad.net: 1 cookie(s)", + "sync.adaptv.advertising.com: 1 cookie(s)", + "sync.mathtag.com: 3 cookie(s)", + "presentation-hkg1.turn.com: 17 cookie(s)", + "beacon.krxd.net: 3 cookie(s)", + "pixel.rubiconproject.com: 59 cookie(s)", + "tap.rubiconproject.com: 3 cookie(s)", + "token.rubiconproject.com: 4 cookie(s)", + "match.adsrvr.org: 4 cookie(s)", + "rc.d.chango.com: 2 cookie(s)", + "rub.pxl.ace.advertising.com: 2 cookie(s)", + "pixel.tapad.com: 2 cookie(s)", + "sync.ipredictive.com: 1 cookie(s)", + "ad.turn.com: 2 cookie(s)", + "rubicon-match.dotomi.com: 2 cookie(s)", + "cm.adgrx.com: 2 cookie(s)", + "sync.1rx.io: 2 cookie(s)", + "pixel-a.sitescout.com: 2 cookie(s)", + "tags.bluekai.com: 3 cookie(s)", + "rp.gwallet.com: 3 cookie(s)", + "sync.extend.tv: 1 cookie(s)", + "tap-s.rubiconproject.com: 1 cookie(s)", + "rtb-rubicon-user-sync.virool.com: 1 cookie(s)" + ], + "commentsSize": [ + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > #comment[0] (99 characters)" + ], + "DOMelementMaxDepth": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragTop", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragBottom", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description.with-code-csa > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description.with-code-csa > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description.with-code-csa > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte.pluzz-box > div.video-description > span.sprite-carte_regions_retroguide", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte.pluzz-box > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte.pluzz-box > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragTop", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragBottom", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description >div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragTop", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragBottom", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container >div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragTop", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag > div.jspDragBottom", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > div.video-titre.ellipsis-text", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > span.sprite-play", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-heure", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-texte > div.video-description > div.video-titre" + ], + "nodesWithInlineCSS": [ + "body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-pluzz (display: none)", + "body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-on-en-a-parle (display: none)", + "body > div#abroad (display: block;)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite (visibility: visible;)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div#video473428253058411334649216441 (width: 300px; height: 250px;)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > iframe[24] (display:none)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[27] (height:0px;width:0px;overflow:hidden)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[27] > iframe[1] (height:0px;width:0px)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[30] (height:0px;width:0px;overflow:hidden)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[30] > iframe[1] (height:0px;width:0px)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[32] (height:0px;width:0px;overflow:hidden)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[32] > iframe[1] (height:0px;width:0px)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > iframe[34] (width: 0px; height: 0px; border: 0px; display: none;)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > img[36] (display:none;)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > iframe[37] (display: none !important;)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[0] > a.direct-lien.france2 > div.progressBar > div.color-bar (width:5%)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[1] > a.direct-lien.france3 > div.progressBar > div.color-bar (width:91%)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[2] > a.direct-lien.france4 > div.progressBar > div.color-bar (width:88%)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[3] > a.direct-lien.france5 > div.progressBar > div.color-bar (width:91%)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[4] > a.direct-lien.franceo > div.progressBar > div.color-bar (width:81%)", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[5] > a.direct-lien.franceinfo > div.progressBar > div.color-bar (width:100%)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable (overflow: hidden; padding: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer (width: 188px; height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane (padding: 0px; width: 167px; top: 0px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack (height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag (height: 60px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable (overflow: hidden; padding: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer (width: 188px; height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane (padding: 0px; width: 167px; top: 0px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack (height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag (height: 60px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable (overflow: hidden; padding: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer (width: 188px; height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane (padding: 0px; width: 167px; top: 0px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack (height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag (height: 60px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable (overflow: hidden; padding: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer (width: 188px; height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane (padding: 0px; width: 167px; top: 0px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack (height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag (height: 60px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable (overflow: hidden; padding: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer (width: 188px; height: 554px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane (padding: 0px; top: 0px; left: 0px; width: 188px;)", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack (height: 100%; )", + "body > div#cboxOverlay (display: none;)", + "body > div#colorbox (display: none;)", + "body > div#colorbox > div#cboxWrapper > div[0] > div#cboxTopLeft (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[0] > div#cboxTopCenter (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[0] > div#cboxTopRight (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] (clear: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxMiddleLeft (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxContent (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxContent > div#cboxTitle (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxContent > div#cboxCurrent (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxContent > div#cboxLoadingOverlay (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxContent > div#cboxLoadingGraphic (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[1] > div#cboxMiddleRight (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[2] (clear: left;)", + "body > div#colorbox > div#cboxWrapper > div[2] > div#cboxBottomLeft (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[2] > div#cboxBottomCenter (float: left;)", + "body > div#colorbox > div#cboxWrapper > div[2] > div#cboxBottomRight (float: left;)", + "body > div#colorbox > div[1] (position: absolute; width: 9999px; visibility: hidden; display: none; max-width: none;)", + "body > ul#ui-id-1 (display: none;)", + "body > div.kxhead (display:none !important;)" + ], + "imagesWithoutDimensions": [ + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > img[36] ", + "body > section#page > div.alternate-color > div#enDirect > div#mea-droite > a[0] > img[0] ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[0] > a.direct-lien.france2 > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[1] > a.direct-lien.france3 > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[2] > a.direct-lien.france4 > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[3] > a.direct-lien.france5 > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[4] > a.direct-lien.franceo > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enDirect > div[3] > ul#direct > li[5] > a.direct-lien.franceinfo > div.vignette-live > img.video-img ", + "body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > a.plusregardes-lien.ellipsis-container > img.video-img ", + "body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > a.plusregardes-lien.ellipsis-container > img.video-img ", + "body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > a.plusregardes-lien.ellipsis-container > img.video-img ", + "body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > a.plusregardes-lien.ellipsis-container > img.video-img ", + "body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > a.plusregardes-lien.ellipsis-container > img.video-img ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane > a.programme-guide.guide-vignette > img.video-img-guide ", + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > img.vad-img ", + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > img.vad-img ", + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > img.vad-img ", + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > img.vad-img ", + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > img.vad-img ", + "body > div#footer-transverse > div#ft-body-box > div#ft-body > div#ft-body-container > ul#jeux > li[1] > a.ft-first-item > img[0] ", + "body > div#footer-transverse > div#ft-body-box > div#ft-body > div#ft-body-container > div#fluxInfo > ul#info > li[1] > a.ft-first-item > img[0] ", + "body > div#footer-transverse > div#ft-body-box > div#ft-body > div#ft-body-container > div#fluxPluzz > ul#pluzz > li[1] > a.ft-first-item > img[0] " + ], + "DOMidDuplicated": [ + "guide-tranche-1: 8 occurrences", + "guide-tranche-2: 8 occurrences", + "guide-tranche-3: 8 occurrences" + ], + "domains": [ + "pixel.rubiconproject.com: 15 request(s)", + "ib.adnxs.com: 13 request(s)", + "refonte.webservices.francetelevisions.fr: 11 request(s)", + "pluzz.francetv.fr: 10 request(s)", + "newsletters.francetv.fr: 9 request(s)", + "ads.stickyadstv.com: 9 request(s)", + "static.francetv.fr: 7 request(s)", + "its.tradelab.fr: 7 request(s)", + "dt.adsafeprotected.com: 6 request(s)", + "cdn.krxd.net: 5 request(s)", + "cm.g.doubleclick.net: 5 request(s)", + "gum.criteo.com: 4 request(s)", + "optimized-by.rubiconproject.com: 4 request(s)", + "token.rubiconproject.com: 4 request(s)", + "www.google-analytics.com: 3 request(s)", + "cdn.tradelab.fr: 3 request(s)", + "pix04.revsci.net: 3 request(s)", + "api.lereferentiel.francetv.fr: 2 request(s)", + "logc238.xiti.com: 2 request(s)", + "pub.ftv-publicite.fr: 2 request(s)", + "sync.mathtag.com: 2 request(s)", + "cdn.turn.com: 2 request(s)", + "beacon.krxd.net: 2 request(s)", + "s.update.rubiconproject.com: 2 request(s)", + "tap2-cdn.rubiconproject.com: 2 request(s)", + "match.adsrvr.org: 2 request(s)", + "rub.pxl.ace.advertising.com: 2 request(s)", + "pixel.adsafeprotected.com: 2 request(s)", + "rubicon-match.dotomi.com: 2 request(s)", + "cm.adgrx.com: 2 request(s)", + "sync.1rx.io: 2 request(s)", + "tags.bluekai.com: 2 request(s)", + "rp.gwallet.com: 2 request(s)", + "s3.algovid.com: 2 request(s)", + "pluzz.webservices.francetelevisions.fr: 1 request(s)", + "googleads.g.doubleclick.net: 1 request(s)", + "www.facebook.com: 1 request(s)", + "pq-direct.revsci.net: 1 request(s)", + "4610658.fls.doubleclick.net: 1 request(s)", + "5110145.fls.doubleclick.net: 1 request(s)", + "www.francetvinfo.fr: 1 request(s)", + "stats.g.doubleclick.net: 1 request(s)", + "staticftv-a.akamaihd.net: 1 request(s)", + "rtd.tubemogul.com: 1 request(s)", + "ad2play.ftv-publicite.fr: 1 request(s)", + "ads.rubiconproject.com: 1 request(s)", + "cdn.oas-eu1.adnxs.com: 1 request(s)", + "lpm-francetv.nuggad.net: 1 request(s)", + "sync.adaptv.advertising.com: 1 request(s)", + "www.google.com: 1 request(s)", + "presentation-hkg1.turn.com: 1 request(s)", + "www.google.com.ph: 1 request(s)", + "p.algovid.com: 1 request(s)", + "tap.rubiconproject.com: 1 request(s)", + "c.algovid.com: 1 request(s)", + "rc.d.chango.com: 1 request(s)", + "boa-pluzz.francetelevisions.fr: 1 request(s)", + "pixel.tapad.com: 1 request(s)", + "sync.ipredictive.com: 1 request(s)", + "ad.turn.com: 1 request(s)", + "bidi-geo.mythings.com: 1 request(s)", + "pixel-a.sitescout.com: 1 request(s)", + "sync.extend.tv: 1 request(s)", + "tap-s.rubiconproject.com: 1 request(s)", + "map.media6degrees.com: 1 request(s)", + "rtb-rubicon-user-sync.virool.com: 1 request(s)" + ], + "globalVariables": [ + "$", + "$zoneAbroad", + "AT_click", + "AT_hit", + "AudienceScience", + "CEDATO_API", + "CEDATO_FLASHBRIDGE11501", + "CEDATO_TAG", + "CHROMECAST_APPS_ID", + "CHROMECAST_APP_ID", + "CLIENT", + "ChromeCastReceiver", + "EventEmitter", + "FlashObject", + "Handlebars", + "IMAGES_BASE_URL", + "Krux", + "NREUM", + "OAS_AD", + "OAS_RICH", + "OAS_listpos", + "OAS_sitepage", + "PlayerSnapshot", + "Pluzz", + "PluzzCast", + "PluzzDiffusionsStorage", + "Promise", + "RSVP", + "RecommandationsHome", + "RubiconAdServing", + "SERVER", + "SWFObject", + "XMLHttpRequest", + "Xt_id", + "Xtconf", + "Xtcore", + "__IASVANS", + "__nr_require", + "a", + "asiAdserver", + "asiPlacements", + "asiPqTag", + "attag", + "autoCompletePluzz", + "axel", + "callWs", + "checkIt", + "customRecommandations", + "data", + "deconcept", + "define", + "detect", + "error", + "form_newsletter_url", + "ftv_metanav", + "ftvenShortTitle", + "ftvi_portail", + "ftvi_rubrique", + "ftvi_section", + "ga", + "gaData", + "gaGlobal", + "gaplugins", + "getQueryParamValue", + "getTickerTranche", + "iframe", + "inViewport", + "injectScript", + "jQuery", + "lSc", + "lancerRecherche", + "lazyLoadLight", + "lazyload", + "lzld", + "miseEnAvant", + "naturalImageOnLoad", + "naturalImages", + "newrelic", + "o_", + "pluzzBox", + "pluzzMenu", + "ref", + "require", + "resizeImage", + "rgb2hex", + "rp_account_config", + "rp_onUserIdLoaded_369300_10", + "rp_onUserIdLoaded_57136_15", + "rp_onUserIdLoaded_64921_15", + "rp_onUserIdLoaded_82932_10", + "rp_requests", + "rp_smartfile", + "rpx_params", + "rubicon_ad", + "rubicon_cb", + "rubicon_creative", + "rubicon_rurl", + "rubicon_tag_code", + "sandblaster", + "tl_sync", + "tldc", + "wck", + "x", + "xd", + "xt1", + "xt16", + "xt21", + "xt29", + "xt44", + "xt7", + "xt8", + "xt8b", + "xt9", + "xtLogDom", + "xt_ParseUrl", + "xt_ParseUrl3", + "xt_ac", + "xt_ad", + "xt_adc", + "xt_addProduct", + "xt_addProduct_load", + "xt_addProduct_v2", + "xt_addchain", + "xt_adi", + "xt_an", + "xt_click", + "xt_form", + "xt_med", + "xt_multc", + "xt_mvt", + "xt_rd", + "xt_rm", + "xtdi", + "xtf1", + "xtf3", + "xtfirst", + "xtidpg", + "xtn2", + "xtnv", + "xtp", + "xtpage", + "xtparam", + "xtsd", + "xtsite", + "xttredir", + "xtv", + "xtvid", + "xw" + ], + "globalVariablesFalsy": [ + "xtfirst = false", + "SERVER = false" + ], + "headersBiggerThanContent": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 (body: 0.04 kB / headers: 0.71 kB)", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView (body: 0.04 kB / headers: 0.38 kB)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121 (body: 0.36 kB / headers: 0.44 kB)", + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0 (body: 0.00 kB / headers: 0.79 kB)", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (body: 0.16 kB / headers: 0.54 kB)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 (body: 0.03 kB / headers: 0.31 kB)", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (body: 0.04 kB / headers: 1.11 kB)", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? (body: 0.19 kB / headers: 0.85 kB)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync (body: 0.00 kB / headers: 0.74 kB)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref= (body: 0.00 kB / headers: 0.43 kB)", + "http://ib.adnxs.com/seg?add=494671&t=2 (body: 0.00 kB / headers: 0.68 kB)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F (body: 0.00 kB / headers: 1.04 kB)", + "http://ads.stickyadstv.com/auto-user-sync (body: 0.00 kB / headers: 0.48 kB)", + "http://ads.stickyadstv.com/cookie-forwarding?id=91 (body: 0.00 kB / headers: 0.44 kB)", + "http://ib.adnxs.com/seg?add=577824&t=2 (body: 0.00 kB / headers: 0.68 kB)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync (body: 0.00 kB / headers: 0.77 kB)", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? (body: 0.19 kB / headers: 0.92 kB)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (body: 0.04 kB / headers: 0.82 kB)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (body: 0.00 kB / headers: 0.97 kB)", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 (body: 0.03 kB / headers: 0.43 kB)", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc (body: 0.31 kB / headers: 0.54 kB)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (body: 0.04 kB / headers: 0.82 kB)", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg (body: 0.32 kB / headers: 0.40 kB)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (body: 0.05 kB / headers: 0.67 kB)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1 (body: 0.00 kB / headers: 0.63 kB)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (body: 0.04 kB / headers: 0.22 kB)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F (body: 0.00 kB / headers: 1.04 kB)", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 (body: 0.04 kB / headers: 0.75 kB)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (body: 0.00 kB / headers: 0.97 kB)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (body: 0.29 kB / headers: 0.56 kB)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775 (body: 0.00 kB / headers: 0.58 kB)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (body: 0.29 kB / headers: 0.56 kB)", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif (body: 0.04 kB / headers: 0.31 kB)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (body: 0.29 kB / headers: 0.56 kB)", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID (body: 0.00 kB / headers: 0.71 kB)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432 (body: 0.00 kB / headers: 0.61 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 (body: 0.06 kB / headers: 0.21 kB)", + "http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D (body: 0.00 kB / headers: 0.38 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (body: 0.04 kB / headers: 0.49 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (body: 0.04 kB / headers: 0.80 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (body: 0.04 kB / headers: 0.77 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 (body: 0.06 kB / headers: 0.21 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (body: 0.04 kB / headers: 0.49 kB)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595 (body: 0.00 kB / headers: 0.65 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (body: 0.04 kB / headers: 0.49 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 (body: 0.04 kB / headers: 0.52 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 (body: 0.06 kB / headers: 0.21 kB)", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata (body: 0.24 kB / headers: 0.47 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 (body: 0.06 kB / headers: 0.21 kB)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (body: 0.00 kB / headers: 0.60 kB)", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605 (body: 0.36 kB / headers: 0.43 kB)", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y (body: 0.04 kB / headers: 0.28 kB)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (body: 0.09 kB / headers: 0.48 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (body: 0.00 kB / headers: 0.33 kB)", + "http://tap.rubiconproject.com/oz/feeds/krux/tokens?afu=K-w5dKy1 (body: 0.00 kB / headers: 0.56 kB)", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000 (body: 0.00 kB / headers: 0.20 kB)", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 (body: 0.04 kB / headers: 0.71 kB)", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000 (body: 0.00 kB / headers: 0.20 kB)", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102 (body: 0.00 kB / headers: 1.23 kB)", + "http://sync.mathtag.com/sync/img?mt_exid=9 (body: 0.00 kB / headers: 0.69 kB)", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc (body: 0.32 kB / headers: 0.54 kB)", + "http://match.adsrvr.org/track/cmf/rubicon (body: 0.11 kB / headers: 0.56 kB)", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee (body: 0.04 kB / headers: 0.35 kB)", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (body: 0.04 kB / headers: 0.76 kB)", + "http://token.rubiconproject.com/token?pid=37556&a=1 (body: 0.00 kB / headers: 0.45 kB)", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1 (body: 0.00 kB / headers: 0.41 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (body: 0.04 kB / headers: 0.80 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (body: 0.04 kB / headers: 0.83 kB)", + "http://rc.d.chango.com/m/rc (body: 0.03 kB / headers: 0.47 kB)", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 (body: 0.04 kB / headers: 0.88 kB)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1 (body: 0.00 kB / headers: 0.47 kB)", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (body: 0.09 kB / headers: 0.47 kB)", + "http://sync.ipredictive.com/d/sync/cookie/generic?http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=$%7BADELPHIC_CUID%7D&expires=30 (body: 0.00 kB / headers: 0.39 kB)", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y (body: 0.38 kB / headers: 0.52 kB)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 (body: 0.00 kB / headers: 0.58 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 (body: 0.04 kB / headers: 1.34 kB)", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (body: 0.04 kB / headers: 0.92 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (body: 0.04 kB / headers: 0.99 kB)", + "http://rubicon-match.dotomi.com/rubicon/match?nuid= (body: 0.00 kB / headers: 0.33 kB)", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0 (body: 0.04 kB / headers: 0.24 kB)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon (body: 0.00 kB / headers: 0.54 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://bidi-geo.mythings.com/bidi/rubicon (body: 0.00 kB / headers: 0.18 kB)", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1 (body: 0.00 kB / headers: 0.83 kB)", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1 (body: 0.17 kB / headers: 0.68 kB)", + "http://tags.bluekai.com/site/6123?redir=http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=$_BK_UUID (body: 0.00 kB / headers: 0.60 kB)", + "http://rp.gwallet.com/r1/cm/p29 (body: 0.00 kB / headers: 0.42 kB)", + "http://sync.extend.tv/r.gif?exchange=rubicon (body: 0.13 kB / headers: 0.51 kB)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (body: 0.17 kB / headers: 0.38 kB)", + "http://map.media6degrees.com/orbserv/hbpix?pixId=4857 (body: 0.04 kB / headers: 0.20 kB)", + "http://rtb-rubicon-user-sync.virool.com/rubicon_user_sync (body: 0.15 kB / headers: 0.38 kB)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (body: 0.00 kB / headers: 0.58 kB)", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie (body: 0.00 kB / headers: 0.58 kB)", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (body: 0.04 kB / headers: 1.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (body: 0.04 kB / headers: 1.09 kB)", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W= (body: 0.00 kB / headers: 0.50 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (body: 0.04 kB / headers: 1.12 kB)", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (body: 0.04 kB / headers: 1.18 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (body: 0.04 kB / headers: 0.24 kB)", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 (body: 0.00 kB / headers: 0.71 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (body: 0.04 kB / headers: 1.20 kB)", + "http://rubicon-match.dotomi.com/rubicon/match?dtm_test=6b2c354a0e830948&nuid= (body: 0.00 kB / headers: 0.41 kB)", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (body: 0.04 kB / headers: 1.25 kB)" + ], + "closedConnections": [ + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "http://rubicon-match.dotomi.com/rubicon/match?nuid=", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w" + ], + "localStorageEntries": [ + "totalCalls", + "kxtag55619.day", + "OB-USER-TOKEN", + "_kxuser", + "kxgeo", + "uid", + "kxtag62554.day", + "kxallsegs", + "_kxvisits", + "lastRecos-undefined", + "kxvisits", + "_kxgeo", + "totalCallsTimeout", + "_kxkuid", + "_kxtag78425.day", + "kxsegs_rt", + "kxtag55618.day", + "kxsegs", + "_kxtag55618.day", + "_kxsegs_rt", + "kxwhistle", + "kxkuid", + "kxuser", + "kxtag66775.day", + "_kxtag66775.day", + "_kxevent3p", + "kxtech", + "_kxtag55619.day", + "__VASTUtil__", + "rubiconSmartTagData", + "kxtag80973.day", + "_kxtech", + "_kxtag62554.day", + "kxtag79842.day", + "kxtag78425.day", + "debugMode", + "kxevent3p", + "_kxtag83101.day", + "_kxtag79842.day", + "_kxallsegs", + "_kxsegs", + "kxtag83101.day", + "_kxtag80973.day", + "_kxwhistle" + ], + "redirects": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 is a redirect (HTTP 302 Moved Temporarily) to http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605 (took 766 ms)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121 is a redirect (HTTP 302 Moved Temporarily) to https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 (took 271 ms)", + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0 is a redirect (HTTP 302 Moved Temporarily) to /F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (took 687 ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync (took 499 ms)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref= is a redirect (HTTP 302 Moved Temporarily) to /hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (took 1258 ms)", + "http://ib.adnxs.com/seg?add=494671&t=2 is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (took 308 ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (took 321 ms)", + "http://ads.stickyadstv.com/auto-user-sync is a redirect (HTTP 302 Moved Temporarily) to http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc (took 767 ms)", + "http://ads.stickyadstv.com/cookie-forwarding?id=91 is a redirect (HTTP 302 Moved Temporarily) to http://ad2play.ftv-publicite.fr/sticky.ads? (took 819 ms)", + "http://ib.adnxs.com/seg?add=577824&t=2 is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (took 487 ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync is a redirect (HTTP 302 Moved Temporarily) to //its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (took 263 ms)", + "http://its.tradelab.fr/?type=tp&advid=94597&adata=%7B%22c%22%3A%7B%22ref_url%22%3A%22%22%2C%22ref_ts%22%3A1482935762%2C%22page_url%22%3A%22pluzz.francetv.fr%2F%22%2C%22dm%22%3A%22francetv.fr%22%7D%2C%22v%22%3A%7B%22vis_cnt%22%3A1%2C%22frst_vis_ts%22%3A1482935762%2C%22prev_vis_ts%22%3A1482935762%2C%22curr_vis_ts%22%3A1482935762%2C%22total_page_cnt%22%3A1%2C%22prev_page_cnt%22%3A1%2C%22curr_page_cnt%22%3A1%7D%7D is a redirect (HTTP 302 Moved Temporarily) to https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (took 854 ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F is a redirect (HTTP 302 Moved Temporarily) to //its.tradelab.fr/?type=seg&uuid2=7863569432388688190&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F (took 296 ms)", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc is a redirect (HTTP 302 Moved Temporarily) to http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1 (took 332 ms)", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg is a redirect (HTTP 301 Moved Permanently) to http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg (took 807 ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1 is a redirect (HTTP 302 Moved Temporarily) to http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D (took 379 ms)", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F (took 1235 ms)", + "http://its.tradelab.fr/?type=seg&uuid2=7863569432388688190&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F is a redirect (HTTP 302 Moved Temporarily) to https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (took 621 ms)", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F is a redirect (HTTP 302 Moved Temporarily) to //its.tradelab.fr/?type=seg&uuid2=2974760119062136432&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F (took 342 ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm is a redirect (HTTP 302 Moved Temporarily) to https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (took 1027 ms)", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D is a redirect (HTTP 302 Moved Temporarily) to http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775 (took 903 ms)", + "http://its.tradelab.fr/?type=seg&uuid2=2974760119062136432&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F is a redirect (HTTP 302 Moved Temporarily) to https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm (took 464 ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775 is a redirect (HTTP 302 Moved Temporarily) to http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID (took 247 ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm is a redirect (HTTP 302 Moved Temporarily) to https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (took 1099 ms)", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm is a redirect (HTTP 302 Moved Temporarily) to https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (took 414 ms)", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID is a redirect (HTTP 302 Moved Temporarily) to http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432 (took 304 ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432 is a redirect (HTTP 302 Moved Temporarily) to http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D (took 330 ms)", + "http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D is a redirect (HTTP 302 Moved Temporarily) to http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595 (took 707 ms)", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595 is a redirect (HTTP 302 Moved Temporarily) to http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (took 804 ms)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D is a redirect (HTTP 302 Moved Temporarily) to http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D&mm_bnc&mm_bct (took 976 ms)", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605 is a redirect (HTTP 302 Moved Temporarily) to http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y (took 6714 ms)", + "http://tap.rubiconproject.com/oz/feeds/krux/tokens?afu=K-w5dKy1 is a redirect (HTTP 302 Moved Temporarily) to https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1 (took 3853 ms)", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102 is a redirect (HTTP 302 Moved Temporarily) to //pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (took 701 ms)", + "http://sync.mathtag.com/sync/img?mt_exid=9 is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (took 710 ms)", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (took 609 ms)", + "http://match.adsrvr.org/track/cmf/rubicon is a redirect (HTTP 302 Moved Temporarily) to http://match.adsrvr.org/track/cmb/rubicon? (took 1006 ms)", + "http://token.rubiconproject.com/token?pid=37556&a=1 is a redirect (HTTP 302 Moved Temporarily) to http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (took 217 ms)", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1 is a redirect (HTTP 302 Moved Temporarily) to http://rubicon-match.dotomi.com/rubicon/match?nuid= (took 392 ms)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1 is a redirect (HTTP 302 Moved Temporarily) to /cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 (took 1398 ms)", + "http://sync.ipredictive.com/d/sync/cookie/generic?http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=$%7BADELPHIC_CUID%7D&expires=30 is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (took 1045 ms)", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1 is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 (took 459 ms)", + "http://rubicon-match.dotomi.com/rubicon/match?nuid= is a redirect (HTTP 302 Moved Temporarily) to /rubicon/match?dtm_test=6b2c354a0e830948&nuid= (took 1021 ms)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon is a redirect (HTTP 302 Moved Temporarily) to http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (took 2233 ms)", + "http://sync.1rx.io/usersync2/rubicon is a redirect (HTTP 302 Moved Temporarily) to http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1 (took 2242 ms)", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1 is a redirect (HTTP 302 Moved Temporarily) to http://bcp.crwdcntrl.net/map/c=1389/tp=STSC/tpid=1d4a4b84-bc18-4844-b92e-ba8d11a75823?http%3A%2F%2Fsu.addthis.com%2Fred%2Fusync%3Fpid%3D11185%26puid%3D1d4a4b84-bc18-4844-b92e-ba8d11a75823%26url%3Dhttp%253A%252F%252Fpixel.rubiconproject.com%252Ftap.php%253Fv%253D7430%2526nid%253D2238%2526put%253D1d4a4b84-bc18-4844-b92e-ba8d11a75823%2526expires%253D360 (took 2283 ms)", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1 is a redirect (HTTP 302 Moved Temporarily) to http://sync.1rx.io/usersync/tradedesk/e6921f7e-568b-4755-ae3d-d0c43b1ec7db (took 212 ms)", + "http://tags.bluekai.com/site/6123?redir=http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=$_BK_UUID is a redirect (HTTP 302 Moved Temporarily) to http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W= (took 2929 ms)", + "http://rp.gwallet.com/r1/cm/p29 is a redirect (HTTP 302 Moved Temporarily) to http://rp.gwallet.com/r1/cm/p29?check_uid_cookie (took 2530 ms)", + "http://sync.extend.tv/r.gif?exchange=rubicon is a redirect (HTTP 302 Moved Temporarily) to https://pixel.rubiconproject.com/tap.php?v=114806&nid=3840&put=2555d558-e258-470f-95b9-71086b8f4d2c (took 2974 ms)", + "http://rtb-rubicon-user-sync.virool.com/rubicon_user_sync is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (took 3031 ms)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (took 380 ms)", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (took 123 ms)", + "http://sync.1rx.io/usersync/tradedesk/e6921f7e-568b-4755-ae3d-d0c43b1ec7db is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (took 268 ms)", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W= is a redirect (HTTP 302 Moved Temporarily) to http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=J6DXPx99999NtZBR (took 245 ms)", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (took 10903 ms)", + "http://rubicon-match.dotomi.com/rubicon/match?dtm_test=6b2c354a0e830948&nuid= is a redirect (HTTP 302 Moved Temporarily) to http://pixel.rubiconproject.com/tap.php?v=5364|1|90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (took 10626 ms)" + ], + "domainsToDomContentLoaded": [ + "pluzz.francetv.fr (6 requests)", + "newsletters.francetv.fr (2 requests)" + ], + "assetsNotGzipped": [ + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (JS)", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp (JS)", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus (JS)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (JS)", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 (JS)", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 (JS)", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 (JS)", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 (JS)", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 (JS)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (JS)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (JS)" + ], + "assetsWithQueryString": [ + "http://cdn.krxd.net/controltag?confid=J1mXKWTY (JS)", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007 (JS)", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste (JS)", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 (IMAGE)", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView (IMAGE)", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (JS)", + "http://cdn.tradelab.fr/seg.js?add=494671 (JS)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 (IMAGE)", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp (JS)", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus (JS)", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (IMAGE)", + "http://cdn.tradelab.fr/seg.js?add=577824 (JS)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (IMAGE)", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 (IMAGE)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (IMAGE)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (JS)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (IMAGE)", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 (IMAGE)", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 (JS)", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (JS)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (IMAGE)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (IMAGE)", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 (JS)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 (JS)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 (IMAGE)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 (JS)", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 (JS)", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata (JS)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 (JS)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (IMAGE)", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 (JS)", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B (JS)", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y (IMAGE)", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr (JS)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (JS)", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 (IMAGE)", + "http://sync.mathtag.com/sync/img?mt_exid=9 (IMAGE)", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 (IMAGE)", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (IMAGE)", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0 (IMAGE)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (IMAGE)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (JS)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (IMAGE)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (IMAGE)" + ], + "assetsWithCookies": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 (IMAGE)", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView (IMAGE)", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (JS)", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (IMAGE)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (IMAGE)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (IMAGE)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (JS)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (IMAGE)", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 (IMAGE)", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee (JS)", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (JS)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (IMAGE)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (IMAGE)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (IMAGE)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 (IMAGE)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (IMAGE)", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B (JS)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (JS)", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 (IMAGE)", + "http://sync.mathtag.com/sync/img?mt_exid=9 (IMAGE)", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (IMAGE)", + "http://rc.d.chango.com/m/rc (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 (IMAGE)", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (IMAGE)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon (IMAGE)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (JS)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (IMAGE)", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (IMAGE)" + ], + "smallImages": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 (0.04 kB)", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView (0.04 kB)", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144 (0.03 kB)", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw (0.04 kB)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 (0.04 kB)", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121 (0.03 kB)", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 (0.04 kB)", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On (0.04 kB)", + "http://ib.adnxs.com/seg?add=2491894:47&t=2 (0.04 kB)", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif (0.04 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (0.04 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (0.04 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 (0.04 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (0.04 kB)", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1 (0.04 kB)", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 (0.04 kB)", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D (0.00 kB)", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y (0.04 kB)", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540 (0.00 kB)", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60 (0.04 kB)", + "http://sync.mathtag.com/sync/img?mt_exid=9 (0.00 kB)", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1 (0.04 kB)", + "http://rc.d.chango.com/m/rc (0.03 kB)", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30 (0.04 kB)", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9 (0.09 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30(0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60 (0.04 kB)", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0 (0.04 kB)", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon (0.00 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (0.04 kB)", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon (0.00 kB)", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30 (0.04 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (0.04 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (0.04 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w (0.04 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (0.04 kB)", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30 (0.04 kB)", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA (0.04 kB)" + ], + "smallCssFiles": [ + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css (1.62 kB)" + ], + "smallJsFiles": [ + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js (1.88 kB)", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY (1.02 kB)", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 (1.49 kB)", + "http://static.francetv.fr/pom/audience/audience.min.js (1.90 kB)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js (1.71 kB)", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js (1.91 kB)", + "http://cdn.krxd.net/controltag/J1mXKWTY.js (1.02 kB)", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js (1.66 kB)", + "http://static.francetv.fr/pom/publicite/publicite.min.js (1.57 kB)", + "http://www.google-analytics.com/analytics.js (1.61 kB)", + "http://cdn.tradelab.fr/tag/59763bfbc2.js (1.87 kB)", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616 (0.16 kB)", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp (1.82 kB)", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus (1.68 kB)", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync (0.05 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 (0.06 kB)", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (0.84 kB)", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 (1.29 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 (0.06 kB)", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 (1.68 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 (0.06 kB)", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 (1.89 kB)", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata (0.24 kB)", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 (0.06 kB)", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 (1.85 kB)", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr (1.83 kB)", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck (0.09 kB)", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/ (0.17 kB)" + ], + "multipleRequests": [ + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1" + ], + "timeToFirstCss": [ + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css received in 2313 ms" + ], + "timeToFirstJs": [ + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js received in 2478 ms" + ], + "timeToFirstImage": [ + "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png received in 4470 ms" + ], + "hiddenContentSize": [ + "body > div.metanav > div.content > div.block.plus > div.content (1505 characters)", + "body > div#menu (49357 characters)", + "body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > script#ias-194352551 (1302 characters)", + "body > div.kxhead (3291 characters)" + ], + "DOMqueriesWithoutResults": [ + "b (in #document) using getElementsByTagName", + "#f (in #document) using getElementById", + "#f (in #document) using getElementById", + "s (in body > div[18]) using getElementsByTagName", + "#r (in #document) using getElementById", + "#p (in #document) using getElementById", + "#p (in #document) using getElementById", + "#p (in #document) using getElementById", + "#o (in #document) using getElementById", + "#f (in #document) using getElementById", + "#p (in #document) using getElementById", + "#p (in #document) using getElementById", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > div.plusregardes-lien.placeholder) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre > div[0]) using getElementsByTagName", + "s (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner) using getElementsByTagName", + "s (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner) using getElementsByTagName", + "s (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner) using getElementsByTagName", + "s (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner) using getElementsByTagName", + "s (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner) using getElementsByTagName", + "* (in body > ul#ui-id-1) using getElementsByTagName", + "u (in body > ul#ui-id-1) using getElementsByTagName", + "* (in body > ul#ui-id-1) using getElementsByTagName", + "#k (in #document) using getElementById", + "#s (in #document) using getElementById", + ". (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "m (in #document) using querySelectorAll", + "s (in #document) using querySelectorAll", + "i (in #document) using querySelectorAll", + "i (in #document) using querySelectorAll", + ". (in #document) using querySelectorAll", + "a (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt) using getElementsByTagName", + "o (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt) using getElementsByTagName", + "e (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt) using getElementsByTagName" + ], + "DOMqueriesById": [ + "#header (in #document)", + "#form-recherche-video (in #document)", + "#header-inner (in #document)", + "#form-recherche-video (in #document)", + "#abroad (in #document)", + "#pub-droite (in #document)", + "#recherche-resultat (in #document)", + "#lesPlusRegardesHome (in #document)", + "#guideReplay (in #document)", + "#player-memeProgramme (in #document)", + "#player-lesPlusRegardes (in #document)", + "#player-enReplay (in #document)", + "#menu (in #document)", + "#menu (in #document)", + "#nosRecommandations (in #document)", + "#on-en-a-parle-tag (in #document)", + "#autocomplete-on-en-a-parle (in #document)", + "#form-recherche-tendance (in #document)", + "#player-onEnAParle (in #document)", + "#player-onEnAParle (in #document)", + "#page (in #document)", + "#menu (in #document)", + "#lienFermer (in #document)", + "#enVad (in #document)", + "#btn-nosrecommandations (in #document)", + "#nosRecommandations (in #document)", + "#nosRecommandations (in #document)", + "#nosRecommandations (in #document)", + "#direct (in #document)", + "#guide-jour-1 (in #document)", + "#guide-jour-1 (in #document)", + "#recherche (in #document)", + "#autocomplete-container (in #document)", + "#autocomplete-pluzz (in #document)", + "#autocomplete-pluzz (in #document)", + "#results-on-en-a-parle (in #document)", + "#results-on-en-a-parle (in #document)", + "#results-on-en-a-parle (in #document)", + "#kx-proxy-J1mXKWTY (in #document)", + "#footer-transverse (in #document)", + "#kx-proxy-J1mXKWTY (in #document)", + "#ft-body-container (in #document)", + "#sizcache005483926855958998 (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ps-script (in #document)", + "#ias-194352551 (in #document)", + "#pub-droite (in #document)" + ], + "DOMqueriesByClassName": [ + ".e (in div)", + ".e (in div)" + ], + "DOMqueriesByTagName": [ + "* (in div)", + "body (in #document)", + "SCRIPT (in #document)", + "script (in #document)", + "script (in DocumentFragment > button[0])", + "script (in DocumentFragment > button[0])", + "script (in DocumentFragment > div#cboxTitle)", + "script (in DocumentFragment > div#cboxCurrent)", + "script (in DocumentFragment > button#cboxPrevious)", + "script (in DocumentFragment > button#cboxNext)", + "script (in DocumentFragment > button#cboxSlideshow)", + "script (in DocumentFragment > div#cboxLoadingOverlay)", + "script (in DocumentFragment > div#cboxLoadingGraphic)", + "script (in DocumentFragment > button[0])", + "script (in DocumentFragment > div#cboxTopLeft)", + "script (in DocumentFragment > div#cboxTopCenter)", + "script (in DocumentFragment > div#cboxTopRight)", + "script (in DocumentFragment > div#cboxMiddleLeft)", + "script (in DocumentFragment > div#cboxContent)", + "script (in DocumentFragment > div#cboxMiddleRight)", + "script (in DocumentFragment > div#cboxBottomLeft)", + "script (in DocumentFragment > div#cboxBottomCenter)", + "script (in DocumentFragment > div#cboxBottomRight)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[1])", + "script (in DocumentFragment > div[2])", + "div (in div#cboxWrapper)", + "script (in DocumentFragment > div#cboxWrapper)", + "script (in DocumentFragment > div[1])", + "script (in DocumentFragment > div#cboxOverlay)", + "script (in DocumentFragment > div#colorbox)", + "body (in #document)", + "body (in #document)", + "* (in body > div#header)", + "* (in #document)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "script (in body > div[18])", + "* (in #document)", + "* (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite)", + "* (in #document)", + "* (in body > div#menu)", + "* (in body > div#menu)", + "* (in #document)", + "* (in #document)", + "* (in #document)", + "* (in #document)", + "* (in #document)", + "* (in body > section#page > div.alternate-color > div#enVad)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + "* (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0])", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > a.plusregardes-lien.ellipsis-container)", + "* (in #document)", + "* (in body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations > div.plusregardes-lien.placeholder)", + "script (in DocumentFragment > a.plusregardes-lien.ellipsis-container)", + "script (in DocumentFragment > a.plusregardes-lien.ellipsis-container)", + "* (in body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in div)", + "* (in div)", + "script (in div)", + "script (in DocumentFragment > div[0])", + "script (in DocumentFragment > div[0])", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre)", + "* (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre > div[0])", + "* (in div)", + "script (in div)", + "* (in #document)", + "* (in #document)", + "img (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner)", + "script (in div.retro-chaine-inner)", + "* (in div.retro-chaine-inner)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner)", + "script (in div.retro-chaine-inner)", + "* (in div.retro-chaine-inner)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte.pluzz-box)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner)", + "script (in div.retro-chaine-inner)", + "* (in div.retro-chaine-inner)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner)", + "script (in div.retro-chaine-inner)", + "* (in div.retro-chaine-inner)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDragTop)", + "script (in DocumentFragment > div.jspDragBottom)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspDrag)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspCap.jspCapTop)", + "script (in DocumentFragment > div.jspTrack)", + "script (in DocumentFragment > div.jspCap.jspCapBottom)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner)", + "script (in div.retro-chaine-inner)", + "* (in div.retro-chaine-inner)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-vignette)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > a.programme-guide.guide-texte)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspPane)", + "script (in DocumentFragment > div.jspContainer)", + "script (in DocumentFragment > div.jspContainer)", + "* (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable)", + "script (in DocumentFragment > div.jspVerticalBar)", + "script (in DocumentFragment > div.jspVerticalBar)", + "* (in #document)", + "script (in DocumentFragment > ul.ui-autocomplete.ui-front)", + "script (in DocumentFragment > ul.ui-autocomplete.ui-front)", + "* (in body > ul#ui-id-1)", + "ul (in body > ul#ui-id-1)", + "* (in body > ul#ui-id-1)", + "script (in DocumentFragment > span.ui-helper-hidden-accessible)", + "script (in DocumentFragment > span.ui-helper-hidden-accessible)", + "body (in #document)", + "script (in #document)", + "script (in #document)", + "li (in body > div.metanav)", + "script (in #document)", + "div (in body > div.metanav)", + "script (in DocumentFragment > ul.block.confidentialite.newsletter_link)", + "script (in DocumentFragment > ul.block.confidentialite.newsletter_link)", + "div (in body > div.metanav)", + "script (in DocumentFragment > ul.block.newsletter)", + "script (in DocumentFragment > ul.block.newsletter)", + "* (in head > script[51])", + "* (in body > div#footer-transverse)", + "* (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "script (in #document)", + "* (in head > script[68])", + "script (in DocumentFragment > div#fluxInfo)", + "script (in DocumentFragment > div#fluxPluzz)", + "script (in DocumentFragment > ul.lessites)", + "* (in body > div.metanav)", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > ul.lessites)", + "script (in DocumentFragment > ul.lessites)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > ul.lesservices)", + "* (in body > div.metanav)", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > ul.lesservices)", + "script (in DocumentFragment > ul.lesservices)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > ul.lesevenements)", + "* (in body > div.metanav)", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > h4[0])", + "script (in DocumentFragment > ul.lesevenements)", + "script (in DocumentFragment > ul.lesevenements)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > li.last)", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > a[0])", + "script (in DocumentFragment > li[0])", + "script (in DocumentFragment > li[0])", + "script (in #document)", + "script (in #document)", + "* (in div)", + "a (in div)", + "input (in div)", + "tbody (in div)", + "link (in div)", + "* (in div)", + "* (in head > script[72])", + "script (in #document)", + "script (in #document)", + "head (in #document)", + "script (in DocumentFragment > div#mea-droite)", + "script (in DocumentFragment > div#mea-droite)", + "script (in DocumentFragment > div#mea-droite)", + "iframe (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "img (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "a (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "object (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "embed (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "div (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)", + "body (in #document)" + ], + "DOMqueriesByQuerySelectorAll": [ + "[selected] (in div)", + ":checked (in div)", + "[test^=''] (in div)", + ":enabled (in div)", + "#eShowPubx01 .adCtnt (in #document)", + "#eShowPubx02 .adCtnt (in #document)", + "#eShowPubMiddle .adCtnt (in #document)", + ".kxhead[data-id='J1mXKWTY'] (in #document)", + "meta[name='programme_region'] (in #document)", + "meta[name='programme_titre'] (in #document)", + "meta[name='programme_code'] (in #document)", + "meta[name='programme_rubriques'] (in #document)", + "meta[name='programme_genre'] (in #document)", + "meta[name='csa'] (in #document)", + "meta[name='programme_chaine'] (in #document)", + "meta[name='og:type'] (in #document)", + "meta[name='og:title'] (in #document)", + "script[src*='.doubleclick.net'] (in #document)", + "iframe[src*='.doubleclick.net'] (in #document)", + "iframe[src*='://pluzz.francetv.fr'] (in #document)", + "iframe[src^=\"/\"] (in #document)", + "link[rel='canonical'] (in #document)", + ".kxtargeted (in #document)" + ], + "DOMinserts": [ + "\"div\" appended to \"html\"", + "\"body\" appended to \"html\"", + "\"script\" appended to \"head\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"DocumentFragment\" appended to \"body\"", + "\"DocumentFragment > div[0]\" appended to \"body\"", + "\"script\" appended to \"head\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]\"", + "\"DocumentFragment > a.plusregardes-lien.ellipsis-container\" appended to \"body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre\"", + "\"DocumentFragment > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre > div[0]\"", + "\"DocumentFragment > div.jspContainer\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner\"", + "\"DocumentFragment > div.jspVerticalBar\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DocumentFragment > div.jspContainer\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner\"", + "\"DocumentFragment > div.jspVerticalBar\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DocumentFragment > div.jspContainer\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner\"", + "\"DocumentFragment > div.jspVerticalBar\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DocumentFragment > div.jspContainer\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner\"", + "\"DocumentFragment > div.jspVerticalBar\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DocumentFragment > div.jspContainer\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner\"", + "\"DocumentFragment > div.jspVerticalBar\" appended to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DocumentFragment > ul.ui-autocomplete.ui-front\" appended to \"body\"", + "\"DocumentFragment > span.ui-helper-hidden-accessible\" appended to \"body > div#header > div#header-inner > form#menu-recherche\"", + "\"script\" appended to \"head\"", + "\"link\" appended to \"head\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"div > iframe#kx-proxy-J1mXKWTY\" appended to \"html\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"div.metanav\" appended to \"body\"", + "\"script\" appended to \"head\"", + "\"DocumentFragment > ul.block.confidentialite.newsletter_link\" appended to \"body > div.metanav > div.content\"", + "\"DocumentFragment > ul.block.newsletter\" appended to \"body > div.metanav > div.content\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"script.lazyloadlight\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"img#imgTP\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"iframe\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"iframe\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"img\" appended to \"head\"", + "\"img\" appended to \"head\"", + "\"img\" appended to \"head\"", + "\"img\" appended to \"head\"", + "\"DocumentFragment\" appended to \"body > div#footer-transverse > div#ft-body-box > div#ft-body > div#ft-body-container\"", + "\"DocumentFragment > h4[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > ul.lessites\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > li.last\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lessites\"", + "\"DocumentFragment > h4[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > ul.lesservices\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > li.last\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesservices\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesservices\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesservices\"", + "\"DocumentFragment > h4[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > ul.lesevenements\" appended to \"body > div.metanav > div.content > div.block.plus > div.content\"", + "\"DocumentFragment > li.last\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"DocumentFragment > li[0]\" appended to \"body > div.metanav > div.content > div.block.plus > div.content > ul.lesevenements\"", + "\"script\" appended to \"head\"", + "\"img\" appended to \"head\"", + "\"div#sizcache0054839268559589980\" appended to \"html\"", + "\"div > span#ps-script\" appended to \"body > div#eShowPubx01 > div.adCtnt\"", + "\"div > a[0]\" appended to \"body > div#eShowPubx01 > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > div#eShowPubx02 > div.adCtnt\"", + "\"div > a[0]\" appended to \"body > div#eShowPubx02 > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div#rubicon_chk_position_765596\" appended to \"html\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div#rubicon_chk_position_658034\" appended to \"html\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div#rubicon_chk_position_200449\" appended to \"html\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > img.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links\" appended to \"body\"", + "\"div > div.kxhead\" appended to \"body\"", + "\"script\" appended to \"head\"", + "\"script\" appended to \"head\"", + "\"div > span.kxtag.kxinvisible\" appended to \"body > div.kxhead\"", + "\"span > span#ps-script\" appended to \"body > div.kxhead > span.kxtag.kxinvisible\"", + "\"div > span.kxtag.kxinvisible\" appended to \"body > div.kxhead\"", + "\"span > span#ps-script\" appended to \"body > div.kxhead > span.kxtag.kxinvisible\"", + "\"div > span.kxtag.kxinvisible\" appended to \"body > div.kxhead\"", + "\"span > span#ps-script\" appended to \"body > div.kxhead > span.kxtag.kxinvisible\"", + "\"div > span.kxtag.kxinvisible\" appended to \"body > div.kxhead\"", + "\"span > span#ps-script\" appended to \"body > div.kxhead > span.kxtag.kxinvisible\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #comment[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #comment[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div#rubicon_chk_position_90339\" appended to \"html\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div#video473428253058411334649216441\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[0] > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div#video473428253058411334649216441\"", + "\"script\" appended to \"head\"", + "\"div > div[0] > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div#video473428253058411334649216441\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > iframe[1]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #comment[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[1]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[1] > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[27]\"", + "\"div > div[1] > iframe[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[27]\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[2]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[2] > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[30]\"", + "\"div > div[2] > iframe[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[30]\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[3]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > div[3] > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[32]\"", + "\"div > div[3] > iframe[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div[32]\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > span#ps-script\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"iframe\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > #text[0]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"div > img[4]\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"DocumentFragment > div#mea-droite\" appended to \"body > section#page > div.alternate-color > div#enDirect\"", + "\"iframe\" appended to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"" + ], + "DOMqueriesDuplicated": [ + "tag name \"b\" with getElementsByTagName (in context #document): 243 queries", + "id \"#p\" with getElementById (in context #document): 49 queries", + "tag name \"s\" with getElementsByTagName (in context #document): 19 queries", + "tag name \"*\" with getElementsByTagName (in context #document): 13 queries", + "selector \"m\" with querySelectorAll (in context #document): 9 queries", + "id \"#f\" with getElementById (in context #document): 5 queries", + "id \"#a\" with getElementById (in context #document): 5 queries", + "id \"#r\" with getElementById (in context #document): 5 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre): 5 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]): 5 queries", + "id \"#n\" with getElementById (in context #document): 4 queries", + "id \"#g\" with getElementById (in context #document): 3 queries", + "id \"#m\" with getElementById (in context #document): 3 queries", + "tag name \"*\" with getElementsByTagName (in context body > div.metanav): 3 queries", + "selector \"#\" with querySelectorAll (in context #document): 3 queries", + "selector \"i\" with querySelectorAll (in context #document): 3 queries", + "id \"#h\" with getElementById (in context #document): 2 queries", + "id \"#l\" with getElementById (in context #document): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > div#menu): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > ul#ui-id-1): 2 queries", + "id \"#k\" with getElementById (in context #document): 2 queries", + "tag name \"d\" with getElementsByTagName (in context body > div.metanav): 2 queries", + "selector \".\" with querySelectorAll (in context #document): 2 queries", + "tag name \"i\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt): 2 queries" + ], + "eventsBound": [ + "\"DOMContentLoaded\" bound to \"#document\"", + "\"load\" bound to \"window\"", + "\"DOMContentLoaded\" bound to \"#document\"", + "\"load\" bound to \"window\"", + "\"blur\" bound to \"window\"", + "\"focus\" bound to \"window\"", + "\"scroll\" bound to \"window\"", + "\"resize\" bound to \"window\"", + "\"load\" bound to \"window\"", + "\"click\" bound to \"body\"", + "\"click\" bound to \"body > div#header > div#header-inner > form#menu-recherche > a.loupe\"", + "\"submit\" bound to \"body > div#header > div#header-inner\"", + "\"click\" bound to \"body > div#abroad\"", + "\"onAdLoaded\" bound to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#lesPlusRegardesHome\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enVad > div.bloc-gauche\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-la_1ere\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-france2\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-france3\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-france4\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-france5\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-franceo\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-info\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-documentaire\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-seriefiction\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-magazine\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-culture\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-jeunesse\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-divertissement\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-sport\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#menu-jeu\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations\"", + "\"click\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-on-en-a-parle\"", + "\"click\" bound to \"body > section#page\"", + "\"error\" bound to \"script\"", + "\"load\" bound to \"script\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li.onglet-home\"", + "\"click\" bound to \"body > div#menu\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-la_1ere\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-france2\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-france3\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-france4\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-france5\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-chaines > ul[0] > li#onglet-franceo\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-info\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-documentaire\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-seriefiction\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-magazine\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-culture\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-jeunesse\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-divertissement\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-sport\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-jeu\"", + "\"click\" bound to \"body > div#onglet > div#onglet-inner > div.onglet-rubriques > ul[0] > li#onglet-regions\"", + "\"click\" bound to \"body > div#menu > div#menu-inner > div#fermer > a#lienFermer\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.sub-tab > li#tranche-1\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.sub-tab > li#tranche-2\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.sub-tab > li#tranche-3\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-8\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-7\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-6\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-5\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-4\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-3\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-2\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-1\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > ul.tab > li#jour-0\"", + "\"mouseover\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mouseout\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"MozMousePixelScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DomMouseScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"mousewheel\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchstart\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchmove\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchend\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"focus\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane\"", + "\"keydown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable\"", + "\"keypress\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack\"", + "\"mouseover\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mouseout\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"MozMousePixelScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DomMouseScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"mousewheel\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchstart\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchmove\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchend\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"focus\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane\"", + "\"keydown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable\"", + "\"keypress\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack\"", + "\"mouseover\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mouseout\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"MozMousePixelScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DomMouseScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"mousewheel\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchstart\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchmove\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchend\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"focus\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane\"", + "\"keydown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable\"", + "\"keypress\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack\"", + "\"mouseover\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mouseout\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack > div.jspDrag\"", + "\"MozMousePixelScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"DomMouseScroll\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"mousewheel\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchstart\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchmove\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"touchend\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer\"", + "\"focus\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspPane\"", + "\"keydown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable\"", + "\"keypress\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable\"", + "\"mousedown\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack\"", + "\"jsp-scroll-y\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable\"", + "\"jsp-scroll-y\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable\"", + "\"jsp-scroll-y\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable\"", + "\"jsp-scroll-y\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable\"", + "\"jsp-scroll-y\" bound to \"body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enReplay > div#tabReplay > ul.tab > li#btn-plusregardes\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enReplay > div#tabReplay > ul.tab > li#btn-nosrecommandations\"", + "\"remove\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"keydown\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"keypress\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"input\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"focus\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"blur\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"remove\" bound to \"body > ul.ui-autocomplete.ui-front\"", + "\"click\" bound to \"body > ul#ui-id-1\"", + "\"mousedown\" bound to \"body > ul#ui-id-1\"", + "\"mouseover\" bound to \"body > ul#ui-id-1\"", + "\"mouseout\" bound to \"body > ul#ui-id-1\"", + "\"focus\" bound to \"body > ul#ui-id-1\"", + "\"blur\" bound to \"body > ul#ui-id-1\"", + "\"keydown\" bound to \"body > ul#ui-id-1\"", + "\"click\" bound to \"#document\"", + "\"menufocus\" bound to \"body > ul#ui-id-1\"", + "\"menuselect\" bound to \"body > ul#ui-id-1\"", + "\"beforeunload\" bound to \"window\"", + "\"click\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container\"", + "\"keyup\" bound to \"body > div#header > div#header-inner > form#menu-recherche > input#recherche\"", + "\"mouseup\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-pluzz\"", + "\"mouseover\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-pluzz\"", + "\"mouseup\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-on-en-a-parle > div#results-on-en-a-parle\"", + "\"mouseover\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-on-en-a-parle > div#results-on-en-a-parle\"", + "\"click\" bound to \"body > div#header > div#header-inner > form#menu-recherche > div#autocomplete-container > div#autocomplete-on-en-a-parle > div#results-on-en-a-parle\"", + "\"DOMContentLoaded\" bound to \"#document\"", + "\"load\" bound to \"window\"", + "\"unload\" bound to \"window\"", + "\"beforeunload\" bound to \"window\"", + "\"load\" bound to \"div > iframe#kx-proxy-J1mXKWTY\"", + "\"error\" bound to \"div > iframe#kx-proxy-J1mXKWTY\"", + "\"readystatechange\" bound to \"div > iframe#kx-proxy-J1mXKWTY\"", + "\"DOMContentLoaded\" bound to \"#document\"", + "\"error\" bound to \"script\"", + "\"load\" bound to \"script\"", + "\"click\" bound to \"body > div#footer-transverse > div#ft-top-box > div#ft-top > ul#ft-top-link > li.ft-contact-link\"", + "\"message\" bound to \"window\"", + "\"unload\" bound to \"window\"", + "\"keydown\" bound to \"#document\"", + "\"keyup\" bound to \"#document\"", + "\"click\" bound to \"body > div.metanav\"", + "\"error\" bound to \"script\"", + "\"load\" bound to \"script\"", + "\"DOMContentLoaded\" bound to \"#document\"", + "\"load\" bound to \"window\"", + "\"click\" bound to \"#document\"", + "\"DOMContentLoaded\" bound to \"#document\"", + "\"load\" bound to \"window\"", + "\"message\" bound to \"window\"", + "\"message\" bound to \"window\"", + "\"focus\" bound to \"window\"", + "\"blur\" bound to \"window\"", + "\"visibilitychange\" bound to \"#document\"", + "\"click\" bound to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div#video473428253058411334649216441\"", + "\"mouseover\" bound to \"body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt > div#video473428253058411334649216441\"", + "\"beforeunload\" bound to \"window\"" + ], + "eventsScrollBound": [ + "bound by f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:60453 / c@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:29885 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:94038 / onload@http://pluzz.francetv.fr/:43:562 on window" + ], + "jQueryVersionsLoaded": [ + "v2.1.4", + "v1.8.3+1" + ], + "jQueryOnDOMReadyFunctions": [ + "null", + "null", + "null", + "null", + "null", + "null", + "null", + "null", + "null", + "null", + "ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "onNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3547", + "null", + "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761", + "null" + ], + "jQueryWindowOnLoadFunctions": [ + "null", + "null" + ], + "jQuerySizzleCalls": [ + "div div (in div#cboxWrapper)", + "body (in #document)", + "body (in #document)", + ".loupe (in body > div#header)", + ".retour-haut-de-page (in #document)", + ".pub-top (in #document)", + ".adCtnt (in body > section#page > div.alternate-color > div#enDirect > div#pub-droite)", + ".bloc-gauche (in #document)", + ".menu-chaine (in body > div#menu)", + ".menu-rubrique (in body > div#menu)", + ".container-recherche-bottom (in #document)", + ".container-recherche-bottom (in #document)", + ".onglet-home (in #document)", + ".onglet-chaine, .onglet-rubrique (in #document)", + ".menu-chaine,.menu-rubrique (in #document)", + ".vad-top-titre (in body > section#page > div.alternate-color > div#enVad)", + ">div (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + ">div (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + ">div (in body >section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + ">div (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + ">div (in body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre)", + ".plusregardes-lien.placeholder (in #document)", + ".video-img (in body > section#page > div.alternate-color > div#enReplay > div#bloc-enReplay > div#nosRecommandations)", + ".video-titre (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre)", + ">div (in body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre)", + ".guide-tranche (in #document)", + ".guide-jour (in #document)", + ".retro-chaine-inner img (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1)", + ".retro-chaine-inner (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner)", + ">.jspVerticalBar (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + ">.jspTrack (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + ">.jspDrag (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner)", + ">.jspVerticalBar (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + ">.jspTrack (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + ">.jspDrag (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner)", + ">.jspVerticalBar (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + ">.jspTrack (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + ">.jspDrag (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner)", + ">.jspVerticalBar (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + ">.jspTrack (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar)", + ">.jspDrag (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer > div.jspVerticalBar > div.jspTrack)", + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer)", + "script (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner)", + ".jspContainer (in body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner.jspScrollable)", + "#btn-plusregardes, #btn-nosrecommandations, #btn-recounique (in #document)", + ".ui-icon (in body > ul#ui-id-1)", + "ul (in body > ul#ui-id-1)", + ".ui-icon (in body > ul#ui-id-1)", + "body (in #document)", + ".block li.pluzz (in body > div.metanav)", + "div.block.plus (in body > div.metanav)", + "div.block.plus (in body > div.metanav)", + "#footer-transverse .ft-contact-link (in #document)", + ".ui-widget-overlay (in #document)", + ".plus .content (in body > div.metanav)", + ".plus .content (in body > div.metanav)", + ".plus .content (in body > div.metanav)" + ], + "lazyLoadableImagesBelowTheFold": [ + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg" + ], + "requestsWithTimeout": [ + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D109108%26nid%3D3876%26put%3D$UID%26expires%3D30", + "http://match.adsrvr.org/track/cmb/rubicon?", + "http://bcp.crwdcntrl.net/map/c=1389/tp=STSC/tpid=1d4a4b84-bc18-4844-b92e-ba8d11a75823?http%3A%2F%2Fsu.addthis.com%2Fred%2Fusync%3Fpid%3D11185%26puid%3D1d4a4b84-bc18-4844-b92e-ba8d11a75823%26url%3Dhttp%253A%252F%252Fpixel.rubiconproject.com%252Ftap.php%253Fv%253D7430%2526nid%253D2238%2526put%253D1d4a4b84-bc18-4844-b92e-ba8d11a75823%2526expires%253D360", + "https://pixel.rubiconproject.com/tap.php?v=114806&nid=3840&put=2555d558-e258-470f-95b9-71086b8f4d2c", + "http://cti.w55c.net/ct/cms-2c-rubicon.html", + "http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=J6DXPx99999NtZBR" + ], + "cssRedundantChildNodesSelectors": [ + ".metanav ul.sso_link_list li:hover @ 1:7581", + ".metanav ul.sso_link_list li:hover a @ 1:7627", + ".metanav ul.sso_link_list li:hover @ 1:7581", + ".metanav ul.sso_link_list li:hover a @ 1:7627" + ], + "cssColors": [ + "#ffffff (57 times)", + "#000000 (38 times)", + "#262626 (37 times)", + "#7a7a7a (29 times)", + "#c4c4c4 (19 times)", + "#323131 (16 times)", + "#0076b9 (14 times)", + "#eaeaea (12 times)", + "#1d1d1d (11 times)", + "#515151 (10 times)", + "#404040 (10 times)", + "#636363 (9 times)", + "#d9d9d9 (8 times)", + "rgba(0,0,0,0.2) (8 times)", + "#f5c22f (7 times)", + "#e80000 (7 times)", + "#97488a (7 times)", + "#87c000 (7 times)", + "#f87c00 (7 times)", + "rgba(50,49,49,0.81) (6 times)", + "rgba(50,49,49,0.25) (6 times)", + "rgba(50,49,49,0.13) (6 times)", + "#cccccc (6 times)", + "rgba(50,49,49,0.54) (6 times)", + "#333333 (5 times)", + "rgba(50,49,49,0.96) (3 times)", + "rgba(50,49,49,0.94) (3 times)", + "#a0a0a0 (3 times)", + "#cfcfcf (3 times)", + "rgba(0,0,0,0.3) (3 times)", + "rgba(50,49,49,0.91) (3 times)", + "#e5eb7c (3 times)", + "rgba(50,49,49,0) (3 times)", + "rgba(50,49,49,0.03) (3 times)", + "rgba(0,0,0,0.8) (2 times)", + "#acacac (2 times)", + "#c7111d (2 times)", + "rgba(0,0,0,0.5) (2 times)", + "#2a2a2a (2 times)", + "rgba(255,255,255,0.7) (2 times)", + "rgba(0,0,0,0.7) (2 times)", + "#fbbebd (2 times)", + "#f76b68 (2 times)", + "#f7f7f7 (2 times)", + "#ddddee (1 times)", + "#80808d (1 times)", + "#003231 (1 times)", + "#50506d (1 times)", + "rgba(0,0,0,0.15) (1 times)", + "rgba(255,255,255,0.3) (1 times)", + "rgba(85,85,85,0.7) (1 times)", + "#bbbbdd (1 times)", + "rgba(255,255,255,0.32) (1 times)", + "#ffc300 (1 times)", + "#213231 (1 times)", + "rgba(255,255,255,0.16) (1 times)", + "#6d6d68 (1 times)", + "#999999 (1 times)", + "#7b7b7b (1 times)", + "#666666 (1 times)", + "#e6e6e6 (1 times)", + "#898989 (1 times)", + "#bbbbbb (1 times)", + "#555454 (1 times)", + "#eeeef4 (1 times)", + "#ffffff (4 times)", + "#454646 (2 times)", + "#ffffff (7 times)", + "#515151 (5 times)", + "#333333 (2 times)", + "#000000 (2 times)", + "#454545 (1 times)", + "#cecdcd (1 times)", + "#ffffff (20 times)", + "#000000 (12 times)", + "#333333 (5 times)", + "#555555 (4 times)", + "#111111 (4 times)", + "#3a3a3a (1 times)", + "#888888 (1 times)", + "#434343 (1 times)", + "#ffffff (20 times)", + "#000000 (12 times)", + "#333333 (5 times)", + "#555555 (4 times)", + "#111111 (4 times)", + "#3a3a3a (1 times)", + "#888888 (1 times)", + "#434343 (1 times)" + ], + "cssComplexSelectors": [ + "#old-browser-popin .browsers>.browser>.logo @ 4:25577", + "#old-browser-popin .browsers>.browser>a @ 4:25679", + "#old-browser-popin .browsers>.browser>a:hover @ 4:25799", + "#old-browser-popin .browsers>.browser>.chrome @ 4:25871", + "#old-browser-popin .browsers>.browser>.firefox @ 4:25999", + "#old-browser-popin .browsers>.browser>.msie @ 4:26129", + "#old-browser-popin .browsers>.browser>.opera @ 4:26253", + "#old-browser-popin .browsers>.browser>.safari @ 4:26379", + ".retroGuide .guide-vignette:hover .video-description .video-heure @ 4:38143", + ".retroGuide .guide-vignette:hover .video-description .video-titre @ 4:38143", + ".retroGuide .guide-vignette:hover .video-description .ellipsis-text @ 4:38286", + ".bloc-voir-aussi-franceinfo .voiraussi-element .voiraussi-infos .title @ 4:42105", + "#diffusion-info .diffusion-paragraphe>span>span @ 4:44318", + ".aide-menu .liste>li>a.selected @ 4:58851", + ".aide-menu .liste>li>a:hover @ 4:58851", + ".aide-menu .liste>li>a @ 4:59005", + ".bloc-color .box-collapse>li>div.box-title @ 4:60216", + ".bloc-color .box-collapse>li>div.box-title:before @ 4:60317", + ".bloc-color .box-collapse>li li @ 4:61011", + ".annexe-plus-regardes a:hover .vignette-plusregardes .vignette-filtre @ 4:62865", + ".annexe-plus-regardes a:hover .vignette-plusregardes .sprite-play.vignette-play @ 4:62948", + "#accessibilite-inner .keyboard>div span @ 4:66261", + "#accessibilite-inner .keyboard>div span:last-of-type @ 4:66415", + "#footer-transverse #ft-top-link li.ft-applications a @ 1:5580", + "#footer-transverse #ft-top-link li#ft-applications a @ 1:5664", + ".metanav .chaines li a @ 1:1973", + ".metanav .chaines li.la1ere a @ 1:2085", + ".metanav .chaines li.france2 a @ 1:2147", + ".metanav .chaines li.france3 a @ 1:2211", + ".metanav .chaines li.france4 a @ 1:2275", + ".metanav .chaines li.france5 a @ 1:2339", + ".metanav .chaines li.franceo a @ 1:2403", + ".metanav .chaines li.current a @ 1:2468", + ".metanav .chaines li a:hover @ 1:2468", + ".metanav .chaines li.la1ere.current a @ 1:2586", + ".metanav .chaines li.la1ere a:hover @ 1:2586", + ".metanav .chaines li.france2.current a @ 1:2692", + ".metanav .chaines li.france2 a:hover @ 1:2692", + ".metanav .chaines li.france3.current a @ 1:2801", + ".metanav .chaines li.france3 a:hover @ 1:2801", + ".metanav .chaines li.france4.current a @ 1:2910", + ".metanav .chaines li.france4 a:hover @ 1:2910", + ".metanav .chaines li.france5.current a @ 1:3019", + ".metanav .chaines li.france5 a:hover @ 1:3019", + ".metanav .chaines li.franceo.current a @ 1:3128", + ".metanav .chaines li.franceo a:hover @ 1:3128", + ".metanav .pluzz .content li @ 1:4032", + ".metanav .info .content li @ 1:4032", + ".metanav .pluzz .content li:hover @ 1:4098", + ".metanav .info .content li:hover @ 1:4098", + ".metanav .pluzz .content a @ 1:4188", + ".metanav .pluzz .content a:hover @ 1:4326", + ".metanav .info .content a:hover @ 1:4326", + ".metanav .transverse li.pluzz a:hover @ 1:4419", + ".metanav .info .content a @ 1:5085", + ".metanav .transverse li.sport a @ 1:5222", + ".metanav .transverse li.sport.current a @ 1:5348", + ".metanav .transverse li.sport a:hover @ 1:5348", + ".metanav .content #KitSso_loginLink a @ 1:7124", + ".metanav ul.sso_link_list li:hover a @ 1:7627", + ".metanav .newsletter a span @ 1:8285", + ".metanav .newsletter a:hover span @ 1:8354", + ".metanav .confidentialite.newsletter_link.sso_connect a:hover span @ 1:9302", + ".metanav .confidentialite.newsletter_link.sso_disconnect a:hover span @ 1:9302", + ".metanav .confidentialite a span @ 1:9450", + ".metanav .confidentialite a:hover span @ 1:9509", + ".metanav .chaines li a @ 1:1973", + ".metanav .chaines li.la1ere a @ 1:2085", + ".metanav .chaines li.france2 a @ 1:2147", + ".metanav .chaines li.france3 a @ 1:2211", + ".metanav .chaines li.france4 a @ 1:2275", + ".metanav .chaines li.france5 a @ 1:2339", + ".metanav .chaines li.franceo a @ 1:2403", + ".metanav .chaines li.current a @ 1:2468", + ".metanav .chaines li a:hover @ 1:2468", + ".metanav .chaines li.la1ere.current a @ 1:2586", + ".metanav .chaines li.la1ere a:hover @ 1:2586", + ".metanav .chaines li.france2.current a @ 1:2692", + ".metanav .chaines li.france2 a:hover @ 1:2692", + ".metanav .chaines li.france3.current a @ 1:2801", + ".metanav .chaines li.france3 a:hover @ 1:2801", + ".metanav .chaines li.france4.current a @ 1:2910", + ".metanav .chaines li.france4 a:hover @ 1:2910", + ".metanav .chaines li.france5.current a @ 1:3019", + ".metanav .chaines li.france5 a:hover @ 1:3019", + ".metanav .chaines li.franceo.current a @ 1:3128", + ".metanav .chaines li.franceo a:hover @ 1:3128", + ".metanav .pluzz .content li @ 1:4032", + ".metanav .info .content li @ 1:4032", + ".metanav .pluzz .content li:hover @ 1:4098", + ".metanav .info .content li:hover @ 1:4098", + ".metanav .pluzz .content a @ 1:4188", + ".metanav .pluzz .content a:hover @ 1:4326", + ".metanav .info .content a:hover @ 1:4326", + ".metanav .transverse li.pluzz a:hover @ 1:4419", + ".metanav .info .content a @ 1:5085", + ".metanav .transverse li.sport a @ 1:5222", + ".metanav .transverse li.sport.current a @ 1:5348", + ".metanav .transverse li.sport a:hover @ 1:5348", + ".metanav .content #KitSso_loginLink a @ 1:7124", + ".metanav ul.sso_link_list li:hover a @ 1:7627", + ".metanav .newsletter a span @ 1:8285", + ".metanav .newsletter a:hover span @ 1:8354", + ".metanav .confidentialite.newsletter_link.sso_connect a:hover span @ 1:9302", + ".metanav .confidentialite.newsletter_link.sso_disconnect a:hover span @ 1:9302", + ".metanav .confidentialite a span @ 1:9450", + ".metanav .confidentialite a:hover span @ 1:9509" + ], + "cssDuplicatedSelectors": [ + ".selectboxit-arrow-container (2 times)", + "#regions_DT div.region (2 times)", + ".flex-control-nav (2 times)", + ".flex-control-nav li (2 times)", + ".flex-control-paging li a (2 times)", + ".flex-control-paging li a.flex-active (2 times)", + ".ui-menu (2 times)", + ".ui-menu .ui-menu-item (2 times)", + ".jspDrag (2 times)", + ".selectboxit-container * (2 times)", + ".selectboxit-container .selectboxit-options a, .selectboxit-container span (2 times)", + ".selectboxit-container .selectboxit-options (2 times)", + ".flexslider (2 times)", + ".selectboxit .selectboxit-arrow-container .selectboxit-arrow (2 times)", + ".selectboxit-btn (2 times)", + ".selectboxit-btn.selectboxit-enabled:focus, .selectboxit-btn.selectboxit-enabled:hover (2 times)", + ".selectboxit-list>.selectboxit-focus>.selectboxit-option-anchor (2 times)", + "#enReplay (2 times)", + "#cboxOverlay (2 times)", + "#cboxContent (2 times)", + "#cboxLoadedContent (2 times)", + "#cboxTitle (2 times)", + "#cboxClose, #cboxNext, #cboxPrevious, #cboxSlideshow (2 times)", + "#cboxClose (2 times)" + ], + "cssDuplicatedProperties": [ + ".flex-control-paging li a {background: rgba(0,0,0,.5)} @ 1:2803", + ".selectboxit-list {border: 1px solid rgba(0,0,0,.2)} @ 4:5954", + "#onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {background: linear-gradient(to bottom,rgba(50,49,49,.13) 0,rgba(50,49,49,.25) 6%,rgba(50,49,49,.54) 17%,rgba(50,49,49,.81) 27%,rgba(50,49,49,.94) 35%,rgba(50,49,49,.96) 44%,rgba(50,49,49,.91) 50%,rgba(50,49,49,.81) 56%,rgba(50,49,49,.54) 67%,rgba(50,49,49,.25) 77%,rgba(50,49,49,.13) 83%,rgba(50,49,49,.03) 92%,rgba(50,49,49,0) 100%)} @ 4:16238", + ".sprite-play-regions {width: 23px} @ 4:85469" + ], + "cssOldIEFixes": [ + "* html .slides @ 1:837", + "* html .jspCorner @ 4:2700", + "#onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)} @ 4:16571" + ], + "cssImportants": [ + ".flex-direction-nav .flex-disabled {opacity: 0!important} @ 1:2105", + ".ui-state-disabled {cursor: default!important} @ 4:681", + ".selectboxit-rendering {display: inline-block!important} @ 4:5139", + ".selectboxit-rendering {zoom: 1!important} @ 4:5170", + ".selectboxit-rendering {visibility: visible!important} @ 4:5187", + ".selectboxit-rendering {position: absolute!important} @ 4:5216", + ".selectboxit-rendering {top: -9999px!important} @ 4:5244", + ".selectboxit-rendering {left: -9999px!important} @ 4:5266", + "#combo-replaySelectBoxIt {width: 119px!important} @ 4:11028", + "#cboxCurrent {display: none!important} @ 4:27636", + ".fb_iframe_widget>span {vertical-align: top!important} @ 4:40991", + ".boutonGooglePlus, .boutonGooglePlus>iframe {width: 68px!important} @ 4:41063", + "#player-onEnAParle .loupe {left: 391px!important} @ 4:46189", + "#combo-nb-elementsSelectBoxIt {width: 80px!important} @ 4:47460", + "#combo-nb-elementsSelectBoxItArrowContainer {width: 40px!important} @ 4:47836", + ".formInput input[type=text], .formInput option, .formInput select, .formInput textarea {font-weight: 700!important} @ 4:68643", + "body {position: initial!important} @ 1:6", + ".relativeBody .metanav {top: 0!important} @ 1:56", + ".metanav.cnil {top: 53px!important} @ 1:86", + ".html-cnil {padding-top: 84px!important} @ 1:116", + ".html-cnil-mobile {padding-top: 84px!important} @ 1:878", + "html {padding-top: 31px!important} @ 1:6", + "#captureSignInLink {padding: 0 0 0 30px!important} @ 1:6533", + ".sso_link_list li a {background: none!important} @ 1:7458", + "html {padding-top: 31px!important} @ 1:6", + "#captureSignInLink {padding: 0 0 0 30px!important} @ 1:6533", + ".sso_link_list li a {background: none!important} @ 1:7458" + ], + "cssMediaQueries": [ + "@media screen and (max-width:860px) (2 rules) @ 1:3443", + "@media only screen and (max-width:1024px) (1 rules) @ 4:6505", + "@media screen and (max-width:980px) (1 rules) @ 1:506", + "@media screen and (max-width:980px) (1 rules) @ 1:506" + ], + "cssNotMinified": [ + ": 0", + ": 0", + ": 0", + ": 0", + ": 0" + ], + "cssMultiClassesSelectors": [ + ".jspArrow.jspDisabled @ 4:2449", + ".selectboxit.selectboxit-disabled @ 4:3328", + ".selectboxit-arrow.ui-icon @ 4:4760", + ".selectboxit-btn.selectboxit-enabled @ 4:5441", + ".selectboxit-btn.selectboxit-enabled @ 4:5441", + ".selectboxit-btn.selectboxit-enabled @ 4:5441", + ".selectboxit-btn.selectboxit-enabled @ 4:5607", + ".selectboxit-btn.selectboxit-enabled @ 4:5607", + ".bloc-droite.player @ 4:8657", + ".selectboxit-btn.selectboxit-enabled @ 4:10560", + ".selectboxit-btn.selectboxit-enabled @ 4:10560", + ".autocomplete-link.autocomplete-link-focus @ 4:12640", + ".on.onglet-chaine @ 4:16689", + ".on.onglet-home @ 4:16689", + ".on.onglet-rubrique @ 4:17054", + ".menu-gauche-lien.on @ 4:18093", + ".menu-gauche-lien.on @ 4:18093", + ".menu-gauche-lien.on @ 4:18093", + ".item_2.sub-menu @ 4:18366", + ".grand.mise-en-avant @ 4:19172", + ".grand.mea-regions.mise-en-avant @ 4:19225", + ".menu-btn.on @ 4:20105", + ".la_1ere.menu-liste @ 4:20413", + ".france2.menu-liste @ 4:20454", + ".france3.menu-liste @ 4:20495", + ".france4.menu-liste @ 4:20536", + ".france5.menu-liste @ 4:20577", + ".franceo.menu-liste @ 4:20618", + ".la_1ere.menu-liste-lien @ 4:21136", + ".la_1ere.menu-liste-lien @ 4:21136", + ".la_1ere.menu-mosaique-lien @ 4:21136", + ".la_1ere.menu-mosaique-lien @ 4:21136", + ".france2.menu-liste-lien @ 4:21288", + ".france2.menu-liste-lien @ 4:21288", + ".france2.menu-mosaique-lien @ 4:21288", + ".france2.menu-mosaique-lien @ 4:21288", + ".france3.menu-liste-lien @ 4:21440", + ".france3.hover.menu-liste-lien @ 4:21440", + ".france3.menu-liste-lien @ 4:21440", + ".france3.menu-mosaique-lien @ 4:21440", + ".france3.hover.menu-mosaique-lien @ 4:21440", + ".france3.menu-mosaique-lien @ 4:21440", + ".france4.menu-liste-lien @ 4:21657", + ".france4.menu-liste-lien @ 4:21657", + ".france4.menu-mosaique-lien @ 4:21657", + ".france4.menu-mosaique-lien @ 4:21657", + ".france5.menu-liste-lien @ 4:21809", + ".france5.menu-liste-lien @ 4:21809", + ".france5.menu-mosaique-lien @ 4:21809", + ".france5.menu-mosaique-lien @ 4:21809", + ".franceo.menu-liste-lien @ 4:21961", + ".franceo.menu-liste-lien @ 4:21961", + ".franceo.menu-mosaique-lien @ 4:21961", + ".franceo.menu-mosaique-lien @ 4:21961", + ".pluzz-nav.previous @ 4:22897", + ".next.pluzz-nav @ 4:22953", + ".box-titre.region @ 4:28374", + ".carte_regions.single-map @ 4:29560", + ".carte_regions.single-map @ 4:29611", + ".carte_regions.double-map @ 4:29676", + ".direct-lien.la_1ere @ 4:32115", + ".direct-lien.france2 @ 4:32172", + ".direct-lien.france3 @ 4:32229", + ".direct-lien.france4 @ 4:32286", + ".direct-lien.france5 @ 4:32343", + ".direct-lien.franceo @ 4:32400", + ".direct-lien.franceinfo @ 4:32457", + ".sprite-play.vignette-play @ 4:33625", + ".sprite-play.vignette-play @ 4:33795", + ".placeholder.plusregardes-lien @ 4:34661", + ".retroGuide.ultramarine @ 4:36961", + ".retroGuide.ultramarine @ 4:37011", + ".retroGuide.ultramarine @ 4:37559", + ".video-description.with-code-csa @ 4:37953", + ".retroGuide.ultramarine @ 4:38547", + ".extended.franceinfo @ 4:39662", + ".bloc-player.franceinfo @ 4:39751", + ".sprite-play.vignette-play @ 4:41844", + ".la_1ere.player-liste @ 4:42854", + ".france2.player-liste @ 4:42905", + ".france3.player-liste @ 4:42956", + ".france4.player-liste @ 4:43007", + ".france5.player-liste @ 4:43058", + ".franceo.player-liste @ 4:43109", + ".diffusion-paragraphe.soustitre @ 4:44423", + ".diffusion-paragraphe.soustitre @ 4:44500", + ".diffusion-paragraphe.soustitre @ 4:44500", + ".diffusion-paragraphe.infos @ 4:44613", + ".diffusion-paragraphe.infos @ 4:44613", + ".details.diffusion-paragraphe @ 4:44718", + ".details.diffusion-paragraphe @ 4:44777", + ".details.diffusion-paragraphe @ 4:44777", + ".details.diffusion-paragraphe @ 4:44897", + ".bloc-droite.player @ 4:45364", + ".bloc-droite.extended.player @ 4:45432", + ".bloc-droite.extended.player @ 4:45478", + ".no-result.resultat-sequences-liste @ 4:46459", + ".border-right.onglet-recherche @ 4:48350", + ".hover.link-vignette @ 4:50728", + ".filtre-titre.oeap @ 4:52705", + ".filtre-btn.on @ 4:53470", + ".decocher.filtre-btn @ 4:53555", + ".decocher.filtre-btn @ 4:53662", + ".enregion.filtre-btn @ 4:53734", + ".enregion.filtre-btn @ 4:53852", + ".enregion.filtre-btn @ 4:53948", + ".chaines.filtre-btn @ 4:54037", + ".filtre-btn.inline @ 4:54144", + ".panel-resultat.panel-separateur @ 4:54371", + ".last.resultat-soustitre-diff @ 4:54463", + ".active.item-lettre @ 4:55333", + ".item-lettre.on @ 4:55386", + ".inactive.item-lettre @ 4:55444", + ".bloc-color.last @ 4:57224", + ".bloc-color.center @ 4:57260", + ".accessiblite.bloc-color @ 4:57816", + ".aide-content.bloc-color @ 4:57816", + ".aide-menu.bloc-color @ 4:57816", + ".bloc-color.box-contact @ 4:57816", + ".bloc-color.non-geoloc-1ere @ 4:57816", + ".bloc-color.qui-sommes-nous @ 4:57816", + ".bloc-color.rss @ 4:57816", + ".bloc-color.qui-sommes-nous @ 4:58059", + ".bloc-color.qui-sommes-nous @ 4:58143", + ".bloc-color.qui-sommes-nous @ 4:58228", + ".bloc-color.qui-sommes-nous @ 4:58228", + ".bloc-color.qui-sommes-nous @ 4:58374", + ".bloc-color.box-adresse @ 4:58443", + ".bloc-color.box-contact @ 4:58443", + ".bloc-color.qui-sommes-nous @ 4:58443", + ".bloc-groupe.bloc-presentation @ 4:58443", + ".container.hub-sans-contenu @ 4:61556", + ".sprite-play.vignette-play @ 4:62948", + ".bloc-inside.last @ 4:64275", + ".box-image.last @ 4:65805", + ".formField.submit @ 4:69381", + ".hub.tendance-bloc @ 4:70083", + ".nb8.tendance-bloc @ 4:70114", + ".home-active.sprite-home @ 4:78362", + ".guadeloupe.selected @ 4:85937", + ".guadeloupe.hover @ 4:86014", + ".guyane.selected @ 4:86156", + ".guyane.hover @ 4:86231", + ".martinique.selected @ 4:86376", + ".hover.martinique @ 4:86456", + ".mayotte.selected @ 4:86603", + ".hover.mayotte @ 4:86680", + ".nvellecaledonie.selected @ 4:86832", + ".hover.nvellecaledonie @ 4:86917", + ".polynesie.selected @ 4:87071", + ".hover.polynesie @ 4:87150", + ".reunion.selected @ 4:87293", + ".hover.reunion @ 4:87368", + ".selected.stpierre @ 4:87509", + ".hover.stpierre @ 4:87587", + ".selected.wallis @ 4:87730", + ".hover.wallis @ 4:87807", + ".cnil.metanav @ 1:72", + ".ui-dialog.ui-widget.ui-widget-content @ 1:8643", + ".block.confidentialite @ 1:33", + ".block.newsletter @ 1:33", + ".block.transverse @ 1:316", + ".block.transverse @ 1:316", + ".block.transverse @ 1:316", + ".current.francetv @ 1:1596", + ".current.la1ere @ 1:2586", + ".current.france2 @ 1:2692", + ".current.france3 @ 1:2801", + ".current.france4 @ 1:2910", + ".current.france5 @ 1:3019", + ".current.franceo @ 1:3128", + ".current.pluzz @ 1:3441", + ".current.pluzz @ 1:3504", + ".current.info @ 1:3504", + ".current.pluzz @ 1:3586", + ".current.info @ 1:4512", + ".current.info @ 1:4740", + ".current.sport @ 1:5348", + ".block.plus @ 1:5506", + ".block.plus @ 1:7124", + ".newsletter.sso_connect @ 1:7829", + ".newsletter.sso_disconnect @ 1:7892", + ".confidentialite.newsletter_link @ 1:8451", + ".confidentialite.newsletter_link.sso_connect @ 1:8523", + ".confidentialite.newsletter_link.sso_connect @ 1:8607", + ".confidentialite.newsletter_link.sso_disconnect @ 1:8607", + ".confidentialite.newsletter_link.sso_disconnect @ 1:8739", + ".confidentialite.sso_connect @ 1:8826", + ".confidentialite.sso_disconnect @ 1:8894", + ".confidentialite.newsletter_link.sso_connect @ 1:9302", + ".confidentialite.newsletter_link.sso_disconnect @ 1:9302", + ".block.confidentialite @ 1:33", + ".block.newsletter @ 1:33", + ".block.transverse @ 1:316", + ".block.transverse @ 1:316", + ".block.transverse @ 1:316", + ".current.francetv @ 1:1596", + ".current.la1ere @ 1:2586", + ".current.france2 @ 1:2692", + ".current.france3 @ 1:2801", + ".current.france4 @ 1:2910", + ".current.france5 @ 1:3019", + ".current.franceo @ 1:3128", + ".current.pluzz @ 1:3441", + ".current.pluzz @ 1:3504", + ".current.info @ 1:3504", + ".current.pluzz @ 1:3586", + ".current.info @ 1:4512", + ".current.info @ 1:4740", + ".current.sport @ 1:5348", + ".block.plus @ 1:5506", + ".block.plus @ 1:7124", + ".newsletter.sso_connect @ 1:7829", + ".newsletter.sso_disconnect @ 1:7892", + ".confidentialite.newsletter_link @ 1:8451", + ".confidentialite.newsletter_link.sso_connect @ 1:8523", + ".confidentialite.newsletter_link.sso_connect @ 1:8607", + ".confidentialite.newsletter_link.sso_disconnect @ 1:8607", + ".confidentialite.newsletter_link.sso_disconnect @ 1:8739", + ".confidentialite.sso_connect @ 1:8826", + ".confidentialite.sso_disconnect @ 1:8894", + ".confidentialite.newsletter_link.sso_connect @ 1:9302", + ".confidentialite.newsletter_link.sso_disconnect @ 1:9302" + ], + "cssOldPropertyPrefixes": [ + ".flexslider { -webkit-border-radius: 4px } // was required by Android Browser 2.1, Chrome 4, iOS Safari 3.2, Safari 4 and earlier @ 1:990", + ".flexslider { -moz-border-radius: 4px } // was required by Firefox 3.6 and earlier @ 1:1016", + ".flexslider { -o-border-radius: 4px } // prefix is no longer supported @ 1:1039", + ".flexslider { -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2) } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:1078", + ".flexslider { -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2) } // was required by Firefox 3.6 and earlier @ 1:1122", + ".flexslider { -o-box-shadow: 0 1px 4px rgba(0,0,0,.2) } // prefix is no longer supported @ 1:1163", + ".flex-viewport { -moz-transition: all 1s ease } // was required by Firefox 15 and earlier @ 1:1309", + ".flex-viewport { -o-transition: all 1s ease } // prefix is no longer supported @ 1:1337", + ".flex-direction-nav a { -moz-transition: all .3s ease } // was required by Firefox 15 and earlier @ 1:1734", + ".flex-control-paging li a { -webkit-border-radius: 20px } // was required by Android Browser 2.1, Chrome 4, iOS Safari 3.2, Safari 4 and earlier @ 1:2864", + ".flex-control-paging li a { -moz-border-radius: 20px } // was required by Firefox 3.6 and earlier @ 1:2891", + ".flex-control-paging li a { -o-border-radius: 20px } // prefix is no longer supported @ 1:2915", + ".flex-control-paging li a { -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3) } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:2956", + ".flex-control-paging li a { -moz-box-shadow: inset 0 0 3px rgba(0,0,0,.3) } // was required by Firefox 3.6 and earlier @ 1:3004", + ".flex-control-paging li a { -o-box-shadow: inset 0 0 3px rgba(0,0,0,.3) } // prefix is no longer supported @ 1:3049", + ".selectboxit-container * { -o-user-select: none } // prefix is no longer supported @ 4:2992", + ".selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled { -webkit-box-shadow: none } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 4:3442", + ".selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled { -moz-box-shadow: none } // was required by Firefox 3.6 and earlier @ 4:3466", + ".selectboxit-container .selectboxit-options { -moz-box-sizing: border-box } // was required by Firefox 28 and earlier @ 4:3710", + ".selectboxit-container .selectboxit-options { -webkit-box-shadow: none } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 4:3927", + ".selectboxit-container .selectboxit-options { -moz-box-shadow: none } // was required by Firefox 3.6 and earlier @ 4:3951", + ".selectboxit-list { -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2) } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 4:5986", + ".selectboxit-list { -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2) } // was required by Firefox 3.6 and earlier @ 4:6031", + "#footer-transverse #ft-body-container div, #footer-transverse ul { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:392", + "#footer-transverse #ft-body-container div, #footer-transverse ul { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:423", + "#footer-transverse #ft-body-container { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:6123", + "#footer-transverse #ft-body-container { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:6154", + ".block.plus .content, .metanav .content #KitSso_loginLink a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:7183", + ".block.plus .content, .metanav .content #KitSso_loginLink a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:7214", + ".metanav .newsletter a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:8129", + ".metanav .newsletter a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:8160", + ".metanav .confidentialite a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:9141", + ".metanav .confidentialite a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:9172", + ".block.plus .content, .metanav .content #KitSso_loginLink a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:7183", + ".block.plus .content, .metanav .content #KitSso_loginLink a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:7214", + ".metanav .newsletter a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:8129", + ".metanav .newsletter a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:8160", + ".metanav .confidentialite a { -webkit-box-sizing: content-box } // was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier @ 1:9141", + ".metanav .confidentialite a { -moz-box-sizing: content-box } // was required by Firefox 28 and earlier @ 1:9172" + ], + "cssQualifiedSelectors": [ + ".flex-direction-nav a.flex-next:before @ 1:2273", + ".flex-pauseplay a.flex-play:before @ 1:2625", + ".flex-control-paging li a.flex-active @ 1:3092", + ".ui-menu .ui-menu-item a.ui-state-active @ 4:1411", + ".ui-menu .ui-menu-item a.ui-state-focus @ 4:1411", + "body.habillage @ 4:6785", + "body.habillage>#header @ 4:6815", + "body.habillage>#menu @ 4:6815", + "body.habillage>#onglet @ 4:6815", + "body.habillage>#page @ 4:6815", + "body.habillage #enDirect @ 4:6930", + "body.habillage #enReplay @ 4:6930", + "body.habillage #enVad @ 4:6930", + "body.habillage #guideReplay @ 4:6930", + ".tab>li.active @ 4:9437", + ".sub-tab>li.active span @ 4:9740", + ".sub-tab>li.active span:hover @ 4:9740", + ".sub-tab>li.disabled span @ 4:9961", + ".sub-tab>li.disabled span:hover @ 4:10001", + "#results-pluzz.with-on-en-a-parle @ 4:12046", + ".ui-menu .ui-menu-item a.ui-state-focus @ 4:12591", + "#onglet-inner li.on @ 4:13516", + "#onglet-inner li.on:after @ 4:13625", + "#onglet-inner li.onglet-chaine @ 4:13693", + "#onglet-inner li.onglet-home @ 4:13693", + "#onglet-inner li.onglet-chaine:after @ 4:16238", + "#onglet-inner li.onglet-home:after @ 4:16238", + "#onglet-inner li.onglet-chaine.on @ 4:16689", + "#onglet-inner li.onglet-chaine:hover @ 4:16689", + "#onglet-inner li.onglet-home.on @ 4:16689", + "#onglet-inner li.onglet-home:hover @ 4:16689", + "#onglet-inner li.onglet-rubrique @ 4:16852", + "#onglet-inner li.onglet-rubrique:after @ 4:16922", + "#onglet-inner li.onglet-rubrique.on @ 4:17054", + "#onglet-inner li.onglet-rubrique:hover @ 4:17054", + "#menu-btn-regions-direct.on @ 4:19913", + "#menu-btn-regions-replay.on @ 4:19913", + ".flex-control-paging li a.flex-active @ 4:22427", + "h3.vad @ 4:23843", + "a.vad-top @ 4:24225", + "a.vad-top:hover .vad-img-filtre @ 4:24282", + "a.lien-hashtag @ 4:28770", + "a.lien-hashtag:hover @ 4:28770", + "a.lien-hashtag:visited @ 4:28770", + "#direct.ultramarine>li @ 4:32854", + "#direct.ultramarine>li:last-child @ 4:32888", + "#direct.ultramarine .direct-lien @ 4:32933", + "#tabReplay.onglet3 @ 4:34067", + "#tabReplay.onglet3>.tab @ 4:34098", + "#lesPlusRegardesHome.active @ 4:34265", + "#nosRecommandations.active @ 4:34265", + ".retroGuide>li>div.la_1ere @ 4:37059", + ".retroGuide>li>div.france2 @ 4:37115", + ".retroGuide>li>div.france3 @ 4:37171", + ".retroGuide>li>div.france4 @ 4:37227", + ".retroGuide>li>div.france5 @ 4:37283", + ".retroGuide>li>div.franceo @ 4:37339", + "#player-infos.extended @ 4:39623", + "#player-infos.extended.franceinfo @ 4:39662", + "#player-memeProgramme div.row @ 4:40309", + "#player-memeProgramme div.row @ 4:40364", + "#player-memeProgramme div.row>* @ 4:40364", + "#player-memeProgramme a.row:hover @ 4:41560", + "#diffusion-info .diffusion-paragraphe>span.soustitre @ 4:44962", + "#encorePlus .row a.img @ 4:45917", + "#player-onEnAParle.hidden @ 4:46308", + "a.off @ 4:48536", + "#maps.both @ 4:55580", + "#maps.both>.map @ 4:55604", + "#regions_DT div.region @ 4:55958", + "#regions_DT>div.nvellecaledonie @ 4:56020", + "#regions_DT>div.stpierre @ 4:56020", + "a.pluzz-button @ 4:56186", + ".aide-menu .liste>li>a.selected @ 4:58851", + ".aide-menu .sous-liste a.selected @ 4:59379", + ".aide-content>div.content-item @ 4:59460", + ".bloc-color .box-collapse>li>div.box-title @ 4:60216", + ".bloc-color .box-collapse>li>div.box-title:before @ 4:60317", + ".formInput label.error @ 4:69442", + ".formInput input.error @ 4:69594", + ".formInput select.error @ 4:69594", + ".formInput textarea.error @ 4:69594", + "h3.tendance-titre @ 4:70517", + ".flex-control-paging li a.flex-active @ 4:71028", + ".flex-control-paging li a.flex-active @ 4:73850", + ".flex-control-paging li a.flex-active @ 4:85266", + "#regions_DT div.region @ 4:85750", + "#regions_DT div.guadeloupe>div.region @ 4:85868", + "#regions_DT div.guadeloupe>div.region @ 4:85868", + "#regions_DT div.guadeloupe.selected>div.region @ 4:85937", + "#regions_DT div.guadeloupe.selected>div.region @ 4:85937", + "#regions_DT div.guadeloupe.hover>div.region @ 4:86014", + "#regions_DT div.guadeloupe.hover>div.region @ 4:86014", + "#regions_DT div.guyane>div.region @ 4:86089", + "#regions_DT div.guyane>div.region @ 4:86089", + "#regions_DT div.guyane.selected>div.region @ 4:86156", + "#regions_DT div.guyane.selected>div.region @ 4:86156", + "#regions_DT div.guyane.hover>div.region @ 4:86231", + "#regions_DT div.guyane.hover>div.region @ 4:86231", + "#regions_DT div.martinique>div.region @ 4:86304", + "#regions_DT div.martinique>div.region @ 4:86304", + "#regions_DT div.martinique.selected>div.region @ 4:86376", + "#regions_DT div.martinique.selected>div.region @ 4:86376", + "#regions_DT div.martinique.hover>div.region @ 4:86456", + "#regions_DT div.martinique.hover>div.region @ 4:86456", + "#regions_DT div.mayotte>div.region @ 4:86534", + "#regions_DT div.mayotte>div.region @ 4:86534", + "#regions_DT div.mayotte.selected>div.region @ 4:86603", + "#regions_DT div.mayotte.selected>div.region @ 4:86603", + "#regions_DT div.mayotte.hover>div.region @ 4:86680", + "#regions_DT div.mayotte.hover>div.region @ 4:86680", + "#regions_DT div.nvellecaledonie>div.region @ 4:86755", + "#regions_DT div.nvellecaledonie>div.region @ 4:86755", + "#regions_DT div.nvellecaledonie.selected>div.region @ 4:86832", + "#regions_DT div.nvellecaledonie.selected>div.region @ 4:86832", + "#regions_DT div.nvellecaledonie.hover>div.region @ 4:86917", + "#regions_DT div.nvellecaledonie.hover>div.region @ 4:86917", + "#regions_DT div.polynesie>div.region @ 4:87000", + "#regions_DT div.polynesie>div.region @ 4:87000", + "#regions_DT div.polynesie.selected>div.region @ 4:87071", + "#regions_DT div.polynesie.selected>div.region @ 4:87071", + "#regions_DT div.polynesie.hover>div.region @ 4:87150", + "#regions_DT div.polynesie.hover>div.region @ 4:87150", + "#regions_DT div.reunion>div.region @ 4:87227", + "#regions_DT div.reunion>div.region @ 4:87227", + "#regions_DT div.reunion.selected>div.region @ 4:87293", + "#regions_DT div.reunion.selected>div.region @ 4:87293", + "#regions_DT div.reunion.hover>div.region @ 4:87368", + "#regions_DT div.reunion.hover>div.region @ 4:87368", + "#regions_DT div.stpierre>div.region @ 4:87440", + "#regions_DT div.stpierre>div.region @ 4:87440", + "#regions_DT div.stpierre.selected>div.region @ 4:87509", + "#regions_DT div.stpierre.selected>div.region @ 4:87509", + "#regions_DT div.stpierre.hover>div.region @ 4:87587", + "#regions_DT div.stpierre.hover>div.region @ 4:87587", + "#regions_DT div.wallis>div.region @ 4:87662", + "#regions_DT div.wallis>div.region @ 4:87662", + "#regions_DT div.wallis.selected>div.region @ 4:87730", + "#regions_DT div.wallis.selected>div.region @ 4:87730", + "#regions_DT div.wallis.hover>div.region @ 4:87807", + "#regions_DT div.wallis.hover>div.region @ 4:87807", + "#footer-transverse #ft-top-link li.large-separator @ 1:3355", + "#footer-transverse #ft-top-link li.small-separator @ 1:3475", + "#footer-transverse #ft-top-link li.ft-applications @ 1:3593", + "#footer-transverse #ft-top-link li#ft-android @ 1:3720", + "#footer-transverse #ft-top-link li#ft-applications @ 1:3720", + "#footer-transverse #ft-top-link li#ft-iphone @ 1:3720", + "#footer-transverse #ft-top-link li#ft-facebook @ 1:3878", + "#footer-transverse #ft-top-link li#ft-google @ 1:3878", + "#footer-transverse #ft-top-link li#ft-rss @ 1:3878", + "#footer-transverse #ft-top-link li#ft-twitter @ 1:3878", + "#footer-transverse #ft-top-link li#ft-windows @ 1:3878", + "#footer-transverse #ft-top-link li#ft-iphone @ 1:4120", + "#footer-transverse #ft-top-link li#ft-android @ 1:4216", + "#footer-transverse #ft-top-link li#ft-windows @ 1:4309", + "#footer-transverse #ft-top-link li#ft-applications @ 1:4405", + "#footer-transverse #ft-top-link li#ft-facebook @ 1:4508", + "#footer-transverse #ft-top-link li#ft-twitter @ 1:4610", + "#footer-transverse #ft-top-link li#ft-google @ 1:4711", + "#footer-transverse #ft-top-link li#ft-rss @ 1:4811", + "#footer-transverse #ft-top-link li:hover#ft-iphone @ 1:4908", + "#footer-transverse #ft-top-link li:hover#ft-android @ 1:4991", + "#footer-transverse #ft-top-link li:hover#ft-windows @ 1:5071", + "#footer-transverse #ft-top-link li:hover#ft-applications @ 1:5155", + "#footer-transverse #ft-top-link li:hover#ft-facebook @ 1:5244", + "#footer-transverse #ft-top-link li:hover#ft-twitter @ 1:5330", + "#footer-transverse #ft-top-link li:hover#ft-google @ 1:5415", + "#footer-transverse #ft-top-link li:hover#ft-rss @ 1:5499", + "#footer-transverse #ft-top-link li.ft-applications a @ 1:5580", + "#footer-transverse #ft-top-link li#ft-applications a @ 1:5664", + "#footer-transverse #info a.bottom-style-end @ 1:6691", + "#footer-transverse #jeux a.bottom-style-end @ 1:6691", + "#footer-transverse #pluzz a.bottom-style-end @ 1:6691", + "#footer-transverse #info a.ft-first-item @ 1:6852", + "#footer-transverse #jeux a.ft-first-item @ 1:6852", + "#footer-transverse #pluzz a.ft-first-item @ 1:6852", + ".block .pluzz a.lien @ 1:33", + ".block .info a.lien @ 1:33", + "a#captureSignInLink @ 1:33", + ".metanav li.current @ 1:1218", + ".metanav li.current a @ 1:1289", + ".metanav .chaines li.la1ere a @ 1:2085", + ".metanav .chaines li.france2 a @ 1:2147", + ".metanav .chaines li.france3 a @ 1:2211", + ".metanav .chaines li.france4 a @ 1:2275", + ".metanav .chaines li.france5 a @ 1:2339", + ".metanav .chaines li.franceo a @ 1:2403", + ".metanav .chaines li.current a @ 1:2468", + ".metanav .chaines li.la1ere.current a @ 1:2586", + ".metanav .chaines li.la1ere a:hover @ 1:2586", + ".metanav .chaines li.france2.current a @ 1:2692", + ".metanav .chaines li.france2 a:hover @ 1:2692", + ".metanav .chaines li.france3.current a @ 1:2801", + ".metanav .chaines li.france3 a:hover @ 1:2801", + ".metanav .chaines li.france4.current a @ 1:2910", + ".metanav .chaines li.france4 a:hover @ 1:2910", + ".metanav .chaines li.france5.current a @ 1:3019", + ".metanav .chaines li.france5 a:hover @ 1:3019", + ".metanav .chaines li.franceo.current a @ 1:3128", + ".metanav .chaines li.franceo a:hover @ 1:3128", + ".metanav .transverse li.pluzz a:hover @ 1:4419", + ".metanav .transverse li.sport a @ 1:5222", + ".metanav .transverse li.sport.current a @ 1:5348", + ".metanav .transverse li.sport a:hover @ 1:5348", + ".metanav div.block.plus h3:hover @ 1:5506", + ".metanav .plus li.last @ 1:6001", + ".metanav li.sso_link:hover @ 1:6759", + ".metanav li.sso_link:hover a @ 1:6819", + ".metanav li.sso_link:hover ul @ 1:6859", + ".metanav ul.sso_link_list @ 1:7530", + ".metanav ul.sso_link_list li:hover @ 1:7581", + ".metanav ul.sso_link_list li:hover a @ 1:7627", + ".block .pluzz a.lien @ 1:33", + ".block .info a.lien @ 1:33", + "a#captureSignInLink @ 1:33", + ".metanav li.current @ 1:1218", + ".metanav li.current a @ 1:1289", + ".metanav .chaines li.la1ere a @ 1:2085", + ".metanav .chaines li.france2 a @ 1:2147", + ".metanav .chaines li.france3 a @ 1:2211", + ".metanav .chaines li.france4 a @ 1:2275", + ".metanav .chaines li.france5 a @ 1:2339", + ".metanav .chaines li.franceo a @ 1:2403", + ".metanav .chaines li.current a @ 1:2468", + ".metanav .chaines li.la1ere.current a @ 1:2586", + ".metanav .chaines li.la1ere a:hover @ 1:2586", + ".metanav .chaines li.france2.current a @ 1:2692", + ".metanav .chaines li.france2 a:hover @ 1:2692", + ".metanav .chaines li.france3.current a @ 1:2801", + ".metanav .chaines li.france3 a:hover @ 1:2801", + ".metanav .chaines li.france4.current a @ 1:2910", + ".metanav .chaines li.france4 a:hover @ 1:2910", + ".metanav .chaines li.france5.current a @ 1:3019", + ".metanav .chaines li.france5 a:hover @ 1:3019", + ".metanav .chaines li.franceo.current a @ 1:3128", + ".metanav .chaines li.franceo a:hover @ 1:3128", + ".metanav .transverse li.pluzz a:hover @ 1:4419", + ".metanav .transverse li.sport a @ 1:5222", + ".metanav .transverse li.sport.current a @ 1:5348", + ".metanav.transverse li.sport a:hover @ 1:5348", + ".metanav div.block.plus h3:hover @ 1:5506", + ".metanav .plus li.last @ 1:6001", + ".metanav li.sso_link:hover @ 1:6759", + ".metanav li.sso_link:hover a @ 1:6819", + ".metanav li.sso_link:hover ul @ 1:6859", + ".metanav ul.sso_link_list @ 1:7530", + ".metanav ul.sso_link_list li:hover @ 1:7581", + ".metanav ul.sso_link_list li:hover a @ 1:7627" + ], + "cssSpecificityIdAvg": [ + ": 0.28", + ": 0.71", + ": 2.27", + ": 0.06", + ": 0.06" + ], + "cssSpecificityClassAvg": [ + ": 1.36", + ": 0.47", + ": 0.25", + ": 2.69", + ": 2.69" + ], + "cssSpecificityTagAvg": [ + ": 0.26", + ": 0.41", + ": 0.57", + ": 0.99", + ": 0.99" + ], + "cssSelectors": [ + ": 1478", + ": 17", + ": 109", + ": 147", + ": 147" + ], + "cssSelectorLengthAvg": [ + ": 1.5717185385656292", + ": 1.411764705882353", + ": 2.6605504587155964", + ": 2.9183673469387754", + ": 2.9183673469387754" + ], + "cssLength": [ + ": 91600", + ": 1658", + ": 8776", + ": 9558", + ": 9558" + ], + "cssRules": [ + ": 1064", + ": 17", + ": 86", + ": 106", + ": 106" + ], + "cssDeclarations": [ + ": 2856", + ": 56", + ": 226", + ": 275", + ": 275" + ], + "smallestResponse": [ + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000 (0.00 kB)" + ], + "biggestResponse": [ + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js (93.96 kB)" + ], + "fastestResponse": [ + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (113 ms)" + ], + "slowestResponse": [ + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (3827 ms)" + ], + "smallestLatency": [ + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365 (113 ms)" + ], + "biggestLatency": [ + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 (3826 ms)" + ], + "differentCharacters": [ + "!&'+,-./0123456789:?ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz©ÇÔàâçèéêëîïôù’€" + ], + "DOMqueriesAvoidable": [ + "tag name \"b\" with getElementsByTagName (in context #document): 243 queries", + "id \"#p\" with getElementById (in context #document): 49 queries", + "tag name \"s\" with getElementsByTagName (in context #document): 19 queries", + "tag name \"*\" with getElementsByTagName (in context #document): 13 queries", + "selector \"m\" with querySelectorAll (in context #document): 9 queries", + "id \"#f\" with getElementById (in context #document): 5 queries", + "id \"#a\" with getElementById (in context #document): 5 queries", + "id \"#r\" with getElementById (in context #document): 5 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre): 5 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > div[0]): 5 queries", + "id \"#n\" with getElementById (in context #document): 4 queries", + "id \"#g\" with getElementById (in context #document): 3 queries", + "id \"#m\" with getElementById (in context #document): 3 queries", + "tag name \"*\" with getElementsByTagName (in context body > div.metanav): 3 queries", + "selector \"#\" with querySelectorAll (in context #document): 3 queries", + "selector \"i\" with querySelectorAll (in context #document): 3 queries", + "id \"#h\" with getElementById (in context #document): 2 queries", + "id \"#l\" with getElementById (in context #document): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > div#menu): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner.jspScrollable > div.jspContainer): 2 queries", + "tag name \"*\" with getElementsByTagName (in context body > ul#ui-id-1): 2 queries", + "id \"#k\" with getElementById (in context #document): 2 queries", + "tag name \"d\" with getElementsByTagName (in context body > div.metanav): 2 queries", + "selector \".\" with querySelectorAll (in context #document): 2 queries", + "tag name \"i\" with getElementsByTagName (in context body > section#page > div.alternate-color > div#enDirect > div#pub-droite > div#eShowPubMiddle > div.adCtnt): 2 queries" + ] + }, + "asserts": false + }, + "jsExecutionTransformer": { + "metrics": { + "domInteractive": 0, + "domContentLoaded": 0, + "domContentLoadedEnd": 0, + "domComplete": 0, + "DOMaccesses": 3479, + "DOMaccessesOnScroll": 0, + "queriesWithoutResults": 106, + "jQueryCalls": 691, + "jQueryCallsOnEmptyObject": 35, + "jQueryNotDelegatedEvents": 30 + }, + "offenders": { + "DOMaccessesOnScroll": { + "data": { + "type": "main" + }, + "children": [ + { + "data": { + "type": "documentScroll", + "timestamp": 30933, + "loadingStep": "domContentLoadedEnd" + }, + "windowPerformance": true + }, + { + "data": { + "type": "windowScroll", + "timestamp": 30933, + "loadingStep": "domContentLoadedEnd" + }, + "windowPerformance": true + } + ] + } + } + }, + "colorDiff": { + "metrics": { + "similarColors": 10 + }, + "offenders": { + "similarColors": [ + { + "color1": "#7a7a7a", + "color2": "#7b7b7b", + "isDark": true + }, + { + "color1": "#323131", + "color2": "#333333", + "isDark": true + }, + { + "color1": "#eaeaea", + "color2": "#e6e6e6", + "isDark": false + }, + { + "color1": "#cccccc", + "color2": "#cfcfcf", + "isDark": false + }, + { + "color1": "#cccccc", + "color2": "#cecdcd", + "isDark": false + }, + { + "color1": "#cfcfcf", + "color2": "#cecdcd", + "isDark": false + }, + { + "color1": "#898989", + "color2": "#888888", + "isDark": true + }, + { + "color1": "#555454", + "color2": "#555555", + "isDark": true + }, + { + "color1": "#454646", + "color2": "#454545", + "isDark": true + }, + { + "color1": "#454545", + "color2": "#434343", + "isDark": true + } + ] + } + }, + "mediaQueriesChecker": { + "metrics": { + "cssMobileFirst": 5, + "cssBreakpoints": 3 + }, + "offenders": { + "cssMobileFirst": [ + { + "query": "screen and (max-width:860px)", + "rules": 2, + "line": 1, + "column": 3443 + }, + { + "query": "only screen and (max-width:1024px)", + "rules": 1, + "line": 4, + "column": 6505 + }, + { + "query": "screen and (max-width:980px)", + "rules": 1, + "line": 1, + "column": 506 + }, + { + "query": "screen and (max-width:980px)", + "rules": 1, + "line": 1, + "column": 506 + } + ], + "cssBreakpoints": { + "860px": { + "count": 1, + "pixels": 860 + }, + "1024px": { + "count": 1, + "pixels": 1024 + }, + "980px": { + "count": 2, + "pixels": 980 + } + } + } + }, + "redownload": { + "metrics": { + "totalRequests": 184, + "incorrectContentTypes": 0, + "totalWeight": 1010614, + "emptyRequests": 3, + "imageOptimization": 5861, + "fileMinification": 0, + "gzipCompression": 10309, + "smallRequests": 64, + "identicalFiles": 4, + "fontsCount": 1, + "heavyFonts": 0, + "unusedUnicodeRanges": 0 + }, + "offenders": { + "totalRequests": { + "total": 184, + "byType": { + "html": [ + "http://pluzz.francetv.fr/", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp=", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync", + "http://ib.adnxs.com/seg?add=494671&t=2", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F", + "http://ib.adnxs.com/seg?add=577824&t=2", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "http://ad2play.ftv-publicite.fr/sticky.ads?", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc", + "http://match.adsrvr.org/track/cmf/rubicon", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20", + "http://sync.1rx.io/usersync2/rubicon", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1", + "http://tags.bluekai.com/site/6123?redir=http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=$_BK_UUID", + "http://sync.extend.tv/r.gif?exchange=rubicon", + "http://rtb-rubicon-user-sync.virool.com/rubicon_user_sync", + "http://sync.1rx.io/usersync/tradedesk/e6921f7e-568b-4755-ae3d-d0c43b1ec7db", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W=", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30" + ], + "css": [ + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css" + ], + "js": [ + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js", + "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js", + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37", + "http://static.francetv.fr/pom/audience/audience.min.js", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js", + "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "http://static.francetv.fr/pom/publicite/publicite.min.js", + "http://www.google-analytics.com/analytics.js", + "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "http://cdn.tradelab.fr/seg.js?add=494671", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "http://cdn.tradelab.fr/seg.js?add=577824", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "http://ads.rubiconproject.com/ad/9585.js", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "https://c.algovid.com/player/cedato_player_108.22_d.js", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/" + ], + "json": [], + "image": [ + "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png", + "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0", + "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://sync.mathtag.com/sync/img?mt_exid=9", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "http://rc.d.chango.com/m/rc", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA" + ], + "video": [], + "webfont": [ + "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff" + ], + "other": [ + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=", + "http://ads.stickyadstv.com/auto-user-sync", + "http://ads.stickyadstv.com/cookie-forwarding?id=91", + "http://its.tradelab.fr/?type=tp&advid=94597&adata=%7B%22c%22%3A%7B%22ref_url%22%3A%22%22%2C%22ref_ts%22%3A1482935762%2C%22page_url%22%3A%22pluzz.francetv.fr%2F%22%2C%22dm%22%3A%22francetv.fr%22%7D%2C%22v%22%3A%7B%22vis_cnt%22%3A1%2C%22frst_vis_ts%22%3A1482935762%2C%22prev_vis_ts%22%3A1482935762%2C%22curr_vis_ts%22%3A1482935762%2C%22total_page_cnt%22%3A1%2C%22prev_page_cnt%22%3A1%2C%22curr_page_cnt%22%3A1%7D%7D", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1", + "http://its.tradelab.fr/?type=seg&uuid2=7863569432388688190&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D", + "http://its.tradelab.fr/?type=seg&uuid2=2974760119062136432&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432", + "http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://tap.rubiconproject.com/oz/feeds/krux/tokens?afu=K-w5dKy1", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102", + "http://token.rubiconproject.com/token?pid=2974&pt=n&a=1", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1", + "http://token.rubiconproject.com/token?pid=37556&a=1", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1", + "http://sync.ipredictive.com/d/sync/cookie/generic?http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=$%7BADELPHIC_CUID%7D&expires=30", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "http://rubicon-match.dotomi.com/rubicon/match?nuid=", + "http://bidi-geo.mythings.com/bidi/rubicon", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1", + "http://rp.gwallet.com/r1/cm/p29", + "http://map.media6degrees.com/orbserv/hbpix?pixId=4857", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie", + "http://s3.algovid.com/ppx/starti?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&cb=1482935772728", + "http://s3.algovid.com/ppx/errori?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&en=6&em=No%20video%20or%20JSV%20support&cb=1482935772730", + "http://rubicon-match.dotomi.com/rubicon/match?dtm_test=6b2c354a0e830948&nuid=" + ] + } + }, + "incorrectContentTypes": [], + "totalWeight": { + "totalWeight": 1010614, + "byType": { + "html": { + "totalWeight": 59152, + "requests": [ + { + "url": "http://pluzz.francetv.fr/", + "weight": 24699 + }, + { + "url": "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp=", + "weight": 1272 + }, + { + "url": "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "weight": 820 + }, + { + "url": "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?", + "weight": 873 + }, + { + "url": "http://ad2play.ftv-publicite.fr/sticky.ads?", + "weight": 417 + }, + { + "url": "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "weight": 6244 + }, + { + "url": "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph", + "weight": 8873 + }, + { + "url": "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph", + "weight": 8873 + }, + { + "url": "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y", + "weight": 837 + }, + { + "url": "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20", + "weight": 6244 + } + ] + }, + "css": { + "totalWeight": 25629, + "requests": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "weight": 18362 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "weight": 1885 + }, + { + "url": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "weight": 940 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "weight": 2221 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "weight": 2221 + } + ] + }, + "js": { + "totalWeight": 561889, + "requests": [ + { + "url": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "weight": 30746 + }, + { + "url": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js", + "weight": 29884 + }, + { + "url": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js", + "weight": 4137 + }, + { + "url": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js", + "weight": 25849 + }, + { + "url": "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "weight": 4083 + }, + { + "url": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007", + "weight": 3128 + }, + { + "url": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37", + "weight": 71683 + }, + { + "url": "http://static.francetv.fr/pom/audience/audience.min.js", + "weight": 2955 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "weight": 1274 + }, + { + "url": "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste", + "weight": 20566 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "weight": 1224 + }, + { + "url": "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "weight": 4083 + }, + { + "url": "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js", + "weight": 8008 + }, + { + "url": "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "weight": 1721 + }, + { + "url": "http://static.francetv.fr/pom/publicite/publicite.min.js", + "weight": 7684 + }, + { + "url": "http://www.google-analytics.com/analytics.js", + "weight": 12027 + }, + { + "url": "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "weight": 5022 + }, + { + "url": "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "weight": 731 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=494671", + "weight": 1517 + }, + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "weight": 2144 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "weight": 1999 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=577824", + "weight": 1517 + }, + { + "url": "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "weight": 760 + }, + { + "url": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js", + "weight": 185349 + }, + { + "url": "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "weight": 6629 + }, + { + "url": "http://ads.rubiconproject.com/ad/9585.js", + "weight": 7381 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "weight": 298 + }, + { + "url": "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "weight": 1052 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "weight": 2083 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "weight": 2297 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "weight": 2102 + }, + { + "url": "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "weight": 718 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "weight": 2060 + }, + { + "url": "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B", + "weight": 4907 + }, + { + "url": "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "weight": 6513 + }, + { + "url": "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "weight": 585 + }, + { + "url": "https://c.algovid.com/player/cedato_player_108.22_d.js", + "weight": 95870 + }, + { + "url": "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "weight": 412 + } + ] + }, + "json": { + "totalWeight": 0, + "requests": [] + }, + "image": { + "totalWeight": 297507, + "requests": [ + { + "url": "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png", + "weight": 20336 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "weight": 24333 + }, + { + "url": "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png", + "weight": 6033 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png", + "weight": 4144 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "weight": 2557 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "weight": 2714 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "weight": 13180 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg", + "weight": 29230 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg", + "weight": 7880 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg", + "weight": 6217 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg", + "weight": 3685 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg", + "weight": 7675 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg", + "weight": 6922 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "weight": 11703 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg", + "weight": 26035 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "weight": 14811 + }, + { + "url": "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png", + "weight": 13696 + }, + { + "url": "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "weight": 455 + }, + { + "url": "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "weight": 373 + }, + { + "url": "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "weight": 43 + }, + { + "url": "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "weight": 39204 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "weight": 783 + }, + { + "url": "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "weight": 491 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "weight": 783 + }, + { + "url": "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "weight": 285 + }, + { + "url": "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "weight": 783 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "weight": 5615 + }, + { + "url": "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "weight": 778 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "weight": 880 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "weight": 850 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "weight": 587 + }, + { + "url": "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "weight": 343 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "weight": 313 + }, + { + "url": "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "weight": 615 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "weight": 313 + }, + { + "url": "http://rc.d.chango.com/m/rc", + "weight": 537 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "weight": 313 + }, + { + "url": "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "weight": 33551 + }, + { + "url": "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "weight": 598 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "weight": 313 + }, + { + "url": "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 310 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "weight": 313 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA", + "weight": 313 + } + ] + }, + "video": { + "totalWeight": 0, + "requests": [] + }, + "webfont": { + "totalWeight": 21546, + "requests": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21546 + } + ] + }, + "other": { + "totalWeight": 44891, + "requests": [ + { + "url": "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "weight": 221 + }, + { + "url": "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "weight": 221 + }, + { + "url": "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "weight": 43983 + }, + { + "url": "http://bidi-geo.mythings.com/bidi/rubicon", + "weight": 204 + }, + { + "url": "http://map.media6degrees.com/orbserv/hbpix?pixId=4857", + "weight": 262 + } + ] + } + } + }, + "emptyRequests": [ + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "http://bidi-geo.mythings.com/bidi/rubicon" + ], + "imageOptimization": { + "totalGain": 5861, + "images": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "original": 2259, + "isCompressed": false, + "lossless": 1335, + "gain": 924 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "original": 2416, + "isCompressed": false, + "lossless": 1084, + "gain": 1332 + }, + { + "url": "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "original": 33274, + "isCompressed": false, + "lossy": 29669, + "gain": 3605 + } + ] + }, + "fileMinification": { + "totalGain": 0, + "files": [] + }, + "gzipCompression": { + "totalGain": 10309, + "files": [ + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "original": 1865, + "gzipped": 748, + "gain": 1117 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "original": 1720, + "gzipped": 533, + "gain": 1187 + }, + { + "url": "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "original": 6040, + "gzipped": 1359, + "gain": 4681 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "original": 1712, + "gzipped": 808, + "gain": 904 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "original": 1926, + "gzipped": 929, + "gain": 997 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "original": 1732, + "gzipped": 845, + "gain": 887 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "original": 1689, + "gzipped": 1153, + "gain": 536 + } + ] + }, + "smallRequests": { + "total": 64, + "byType": { + "css": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "size": 1537 + }, + { + "url": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "size": 594 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "size": 1828 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "size": 1828 + } + ], + "js": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "size": 914 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "size": 866 + }, + { + "url": "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "size": 1360 + }, + { + "url": "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "size": 159 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=494671", + "size": 1148 + }, + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "size": 1865 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "size": 1720 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=577824", + "size": 1148 + }, + { + "url": "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "size": 51 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "size": 62 + }, + { + "url": "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "size": 384 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "size": 1712 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "size": 1926 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "size": 1732 + }, + { + "url": "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "size": 168 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "size": 1689 + }, + { + "url": "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "size": 70 + }, + { + "url": "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "size": 178 + } + ], + "image": [ + { + "url": "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "size": 44 + }, + { + "url": "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "size": 35 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "size": 43 + }, + { + "url": "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "size": 35 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "size": 43 + }, + { + "url": "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "size": 43 + }, + { + "url": "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "size": 43 + }, + { + "url": "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "size": 43 + }, + { + "url": "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "size": 42 + }, + { + "url": "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "size": 42 + }, + { + "url": "http://rc.d.chango.com/m/rc", + "size": 35 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "size": 42 + }, + { + "url": "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "size": 95 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "size": 42 + }, + { + "url": "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "size": 42 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA", + "size": 42 + } + ] + } + }, + "identicalFiles": { + "avoidableRequests": 4, + "count": 4, + "list": [ + { + "weight": 3287, + "urls": [ + "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "http://cdn.krxd.net/controltag/J1mXKWTY.js" + ] + }, + { + "weight": 1148, + "urls": [ + "http://cdn.tradelab.fr/seg.js?add=494671", + "http://cdn.tradelab.fr/seg.js?add=577824" + ] + }, + { + "weight": 177, + "urls": [ + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?" + ] + }, + { + "weight": 5846, + "urls": [ + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20" + ] + } + ] + }, + "fontsCount": { + "count": 1, + "list": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "size": 21240 + } + ] + }, + "heavyFonts": { + "count": 0, + "fonts": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21240, + "numGlyphs": 220, + "averageGlyphComplexity": 23.9 + } + ], + "totalGain": 0 + }, + "unusedUnicodeRanges": { + "count": 0, + "fonts": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21240, + "isIconFont": false, + "unicodeRanges": [ + { + "name": "Basic Latin", + "rangeStart": 32, + "rangeEnd": 127, + "charset": " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + "numGlyphsInCommonWithPageContent": 72, + "coverage": 0.9895833333333334 + }, + { + "name": "Latin-1 Supplement", + "rangeStart": 160, + "rangeEnd": 255, + "charset": " ¡¢£¤¥¦§¨©ª«¬­®¯°±´µ¶·¸º»¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖרÙÚÛÜßàáâãäåæçèéêëìíîïñòóôõö÷øùúûüÿ", + "numGlyphsInCommonWithPageContent": 14, + "coverage": 0.875 + }, + { + "name": "Latin Extended", + "rangeStart": 256, + "rangeEnd": 591, + "charset": "ŒœŸ", + "numGlyphsInCommonWithPageContent": 0, + "coverage": 0.008928571428571428 + }, + { + "name": "Others", + "charset": "\u0000\rˆ˜           ‐‑‒–—‘’‚“”„•… ‹› €™◼fifl￿", + "numGlyphsInCommonWithPageContent": 2 + } + ] + } + ] + } + } + }, + "http2": { + "metrics": { + "http2": false + } + } + }, + "javascriptExecutionTree": { + "data": { + "type": "main", + "domInteractive": 3944, + "domContentLoaded": 3944, + "domContentLoadedEnd": 4508, + "domComplete": 30964 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "http://pluzz.francetv.fr/:1:853 / global code@http://pluzz.francetv.fr/:1:869", + "timestamp": 2177, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "http://pluzz.francetv.fr/:1:853 / global code@http://pluzz.francetv.fr/:1:869", + "timestamp": 2178, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createTextNode", + "callDetails": { + "arguments": [ + 1 + ] + }, + "backtrace": "http://pluzz.francetv.fr/:1:729 / http://pluzz.francetv.fr/:1:1979 / r@http://pluzz.francetv.fr/:1:681 / http://pluzz.francetv.fr/:1:853 / global code@http://pluzz.francetv.fr/:1:869", + "timestamp": 2185, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3176, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3176, + "loadingStep": "domCreation", + "time": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#comment" + } + ] + }, + "backtrace": "setDocument@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:13027 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3177, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "backtrace": "setDocument@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:13027 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3177, + "loadingStep": "domCreation", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3179, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "setDocument@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:13190 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3180, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22055 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3180, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3182, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22075 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3182, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3182, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3182, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:22510 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3182, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29939 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3188, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29939 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3188, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3189, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3189, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3189, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "input" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3189, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "input" + } + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3189, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3191, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3191, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3191, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "input" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3193, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "select" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3193, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "option" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3193, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "select" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "option" + } + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3193, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "input" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3193, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery loaded", + "callDetails": { + "arguments": [ + "version 2.1.4" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:208 / global code@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:212", + "timestamp": 3199, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "a" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:2282 / global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:4147", + "timestamp": 3213, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - outerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "a" + } + ] + }, + "arguments": [ + 1 + ] + }, + "backtrace": "", + "timestamp": 3214, + "loadingStep": "domCreation", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "createdElement", + "element": "a" + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "a" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:3102 / global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:4147", + "timestamp": 3216, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "", + "timestamp": 3218, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3221, + "loadingStep": "domCreation", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3223, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "body" + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3223, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3223, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "body" + }, + { + "type": "head" + } + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3223, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16750", + "timestamp": 3223, + "loadingStep": "domCreation", + "time": 11 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "a" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10671 / global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:15512", + "timestamp": 3238, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:11409 / global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:15512", + "timestamp": 3240, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - blur", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "", + "timestamp": 3240, + "loadingStep": "domCreation", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "blur", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "blur" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - focus", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6320", + "timestamp": 3242, + "loadingStep": "domCreation", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "focus", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "SCRIPT" + ] + }, + "backtrace": "", + "timestamp": 3246, + "loadingStep": "domCreation", + "time": 1, + "resultsNumber": 4 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "SCRIPT" + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:29574", + "timestamp": 3247, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "a" + ] + }, + "backtrace": "", + "timestamp": 3247, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3862, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3863, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3863, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3863, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / global code@http://pluzz.francetv.fr/:28:757", + "timestamp": 3865, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "global code@http://pluzz.francetv.fr/:31:28", + "timestamp": 3865, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "", + "timestamp": 3866, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "", + "timestamp": 3866, + "loadingStep": "domCreation", + "time": 0, + "resultsNumber": 9 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "", + "timestamp": 3867, + "loadingStep": "domCreation", + "time": 1 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "scroll" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:60453 / c@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:29885 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:94038 / onload@http://pluzz.francetv.fr/:43:562", + "timestamp": 3906, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "resize" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:60476 / c@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:29885 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:94038 / onload@http://pluzz.francetv.fr/:43:562", + "timestamp": 3907, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3925, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "lazyLoadLight@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57782 / global code@http://pluzz.francetv.fr/:85:156", + "timestamp": 3935, + "loadingStep": "domCreation", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "lazyLoadLight@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57782 / global code@http://pluzz.francetv.fr/:85:156", + "timestamp": 3935, + "loadingStep": "domCreation", + "time": 2 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3940, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "jQuery - load", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "", + "timestamp": 3941, + "loadingStep": "domCreation", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "", + "timestamp": 3942, + "loadingStep": "domCreation" + } + }, + { + "data": { + "type": "domInteractive", + "timestamp": 3944, + "loadingStep": "domInteractive" + }, + "windowPerformance": true + }, + { + "data": { + "type": "domContentLoaded", + "timestamp": 3944, + "loadingStep": "domContentLoaded" + }, + "windowPerformance": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3945, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "{\"id\":\"colorbox\",\"class\":\"\",\"role\":\"dialog\",\"tabindex\":\"-1\"}" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3945, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - hide", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#colorbox" + } + ] + }, + "arguments": [] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3945, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "createdElement", + "element": "div#colorbox" + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - hide", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxOverlay" + } + ] + }, + "arguments": [] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxOverlay" + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3946, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10542 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3947, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10542 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3947, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10542 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3947, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "button" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10542 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3947, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10542 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3947, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "{\"id\":\"cboxPrevious\"}" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10597 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10597 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10597 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "button" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10597 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10597 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3948, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "{\"id\":\"cboxNext\"}" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3949, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "button" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3949, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxContent" + } + ] + }, + "arguments": [ + "div#cboxTitle", + "div#cboxCurrent", + "DocumentFragment > button#cboxPrevious", + "DocumentFragment > button#cboxNext", + "button#cboxSlideshow", + "div#cboxLoadingOverlay" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3949, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxTitle" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxTitle", + "tree": { + "DocumentFragment": { + "div#cboxTitle": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxCurrent" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxCurrent", + "tree": { + "DocumentFragment": { + "div#cboxCurrent": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "button#cboxPrevious", + "tree": { + "DocumentFragment": { + "button#cboxPrevious": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button#cboxPrevious", + "tree": { + "DocumentFragment": { + "button#cboxPrevious": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "button#cboxNext", + "tree": { + "DocumentFragment": { + "button#cboxNext": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button#cboxNext", + "tree": { + "DocumentFragment": { + "button#cboxNext": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "button#cboxSlideshow" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button#cboxSlideshow", + "tree": { + "DocumentFragment": { + "button#cboxSlideshow": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxLoadingOverlay" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxLoadingOverlay", + "tree": { + "DocumentFragment": { + "div#cboxLoadingOverlay": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxLoadingGraphic" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxLoadingGraphic", + "tree": { + "DocumentFragment": { + "div#cboxLoadingGraphic": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxContent" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10677 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10677 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10677 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "button" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10677 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / p@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:10677 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "button[0]", + "tree": { + "DocumentFragment": { + "button[0]": 1 + } + } + } + ] + }, + "arguments": [ + "{\"id\":\"cboxClose\"}" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3953, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3954, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3954, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "div#cboxTopLeft", + "div#cboxTopCenter", + "div#cboxTopRight" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3954, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxTopLeft" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxTopLeft", + "tree": { + "DocumentFragment": { + "div#cboxTopLeft": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxTopCenter" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxTopCenter", + "tree": { + "DocumentFragment": { + "div#cboxTopCenter": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxTopRight" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxTopRight", + "tree": { + "DocumentFragment": { + "div#cboxTopRight": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3956, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3956, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3956, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "div#cboxMiddleLeft", + "div#cboxContent", + "div#cboxMiddleRight" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3956, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxMiddleLeft" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxMiddleLeft", + "tree": { + "DocumentFragment": { + "div#cboxMiddleLeft": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxContent" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxContent", + "tree": { + "DocumentFragment": { + "div#cboxContent": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxMiddleRight" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxMiddleRight", + "tree": { + "DocumentFragment": { + "div#cboxMiddleRight": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3957, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3957, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3957, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3957, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "div#cboxBottomLeft", + "div#cboxBottomCenter", + "div#cboxBottomRight" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3957, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxBottomLeft" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxBottomLeft", + "tree": { + "DocumentFragment": { + "div#cboxBottomLeft": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxBottomCenter" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxBottomCenter", + "tree": { + "DocumentFragment": { + "div#cboxBottomCenter": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxBottomRight" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxBottomRight", + "tree": { + "DocumentFragment": { + "div#cboxBottomRight": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + }, + "arguments": [ + "div", + "div", + "div" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3959, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[1]", + "tree": { + "DocumentFragment": { + "div[1]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[2]", + "tree": { + "DocumentFragment": { + "div[2]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + }, + "arguments": [ + "div div" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3960, + "loadingStep": "domContentLoaded", + "time": 3, + "resultsNumber": 13 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + }, + "arguments": [ + "div div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + }, + "arguments": [ + "div" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 13, + "elements": [ + { + "type": "createdElement", + "element": "div#cboxTopLeft", + "tree": { + "div#cboxWrapper": { + "div[0]": { + "div#cboxTopLeft": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxTopCenter", + "tree": { + "div#cboxWrapper": { + "div[0]": { + "div#cboxTopCenter": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxTopRight", + "tree": { + "div#cboxWrapper": { + "div[0]": { + "div#cboxTopRight": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxMiddleLeft", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxMiddleLeft": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxContent", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxContent": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxTitle", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxContent": { + "div#cboxTitle": 1 + } + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxCurrent", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxContent": { + "div#cboxCurrent": 1 + } + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxLoadingOverlay", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxContent": { + "div#cboxLoadingOverlay": 1 + } + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxLoadingGraphic", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxContent": { + "div#cboxLoadingGraphic": 1 + } + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxMiddleRight", + "tree": { + "div#cboxWrapper": { + "div[1]": { + "div#cboxMiddleRight": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxBottomLeft", + "tree": { + "div#cboxWrapper": { + "div[2]": { + "div#cboxBottomLeft": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxBottomCenter", + "tree": { + "div#cboxWrapper": { + "div[2]": { + "div#cboxBottomCenter": 1 + } + } + } + }, + { + "type": "createdElement", + "element": "div#cboxBottomRight", + "tree": { + "div#cboxWrapper": { + "div[2]": { + "div#cboxBottomRight": 1 + } + } + } + } + ] + }, + "arguments": [ + "{\"float\":\"left\"}" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3964, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3964, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#colorbox" + } + ] + }, + "arguments": [ + "div#cboxWrapper", + "div" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3964, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxWrapper" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxWrapper", + "tree": { + "DocumentFragment": { + "div#cboxWrapper": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[1]", + "tree": { + "DocumentFragment": { + "div[1]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div#colorbox" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "div#cboxOverlay", + "div#colorbox" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3966, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#cboxOverlay" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#cboxOverlay", + "tree": { + "DocumentFragment": { + "div#cboxOverlay": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#colorbox" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#colorbox", + "tree": { + "DocumentFragment": { + "div#colorbox": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:6532 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3967, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "click", + ".pluzz-box", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3968, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:6627 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3969, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "click", + ".box-bottom-links #resume-video", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3969, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#header" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3969, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#header" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#header", + "tree": { + "body": { + "div#header": 1 + } + } + } + ] + }, + "arguments": [ + ".loupe" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3970, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#header", + "tree": { + "body": { + "div#header": 1 + } + } + } + ] + }, + "arguments": [ + ".loupe" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#header", + "tree": { + "body": { + "div#header": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a.loupe", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "a.loupe": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3971, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a.loupe", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "a.loupe": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a.loupe", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "a.loupe": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#form-recherche-video" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3971, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#form-recherche-video" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + ".loupe" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3972, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3972, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + } + } + ], + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".retour-haut-de-page" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:7821 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3972, + "loadingStep": "domContentLoaded", + "time": 3, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".retour-haut-de-page" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3975, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + } + } + ], + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#header-inner" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3975, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#header-inner" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#header-inner", + "tree": { + "body": { + "div#header": { + "div#header-inner": 1 + } + } + } + } + ] + }, + "arguments": [ + "submit", + "#menu-recherche", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3976, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#header-inner", + "tree": { + "body": { + "div#header": { + "div#header-inner": 1 + } + } + } + } + ] + }, + "arguments": [ + "submit" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#form-recherche-video" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3977, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#form-recherche-video" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "submit", + ".loupe", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3978, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#abroad" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3978, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#abroad" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [ + "click", + "#abroad-close", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3979, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [ + "click", + ".abroad-btn", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3980, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - slideDown", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [ + 300 + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3980, + "loadingStep": "domContentLoaded", + "time": 13 + }, + "children": [ + { + "data": { + "type": "jQuery - animate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [ + "{\"height\":\"show\",\"paddingTop\":\"show\",\"marginTop\":\"show\",\"paddingBottom\":\"show\",\"marginBottom\":\"show\"}", + 300, + "undefined", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "DIV" + ] + } + } + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "body" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[18]", + "tree": { + "body": { + "div[18]": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "jQuery - detach", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[18]", + "tree": { + "body": { + "div[18]": 1 + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[18]", + "tree": { + "body": { + "div[18]": 1 + } + } + } + ] + }, + "arguments": [ + "undefined", + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[18]", + "tree": { + "body": { + "div[18]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - show", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#abroad", + "tree": { + "body": { + "div#abroad": 1 + } + } + }, + null + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".pub-top" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18769 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3993, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".pub-top" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + ".adCtnt" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3994, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "onAdLoaded", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3995, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#pub-droite" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3995, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#pub-droite" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#pub-droite", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + ".adCtnt" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3995, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#pub-droite", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + ".adCtnt" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#pub-droite", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "onAdLoaded", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3996, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "onAdLoaded" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#recherche-resultat" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3997, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#recherche-resultat" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + ".resultat-vignette, .resultat-titre-diff > a, a.resultat-btn", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3998, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#lesPlusRegardesHome" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3998, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#lesPlusRegardesHome" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#lesPlusRegardesHome", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#lesPlusRegardesHome": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "a.plusregardes-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3998, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#lesPlusRegardesHome", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#lesPlusRegardesHome": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#guideReplay" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3999, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#guideReplay" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guideReplay", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "a.programme-guide", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3999, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guideReplay", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#player-memeProgramme" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 3999, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#player-memeProgramme" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "a.row", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4000, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#player-lesPlusRegardes" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4000, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#player-lesPlusRegardes" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "#plusRegardes" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4000, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "a.row-img", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4001, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#player-enReplay" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4001, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#player-enReplay" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "#retroGuide" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4001, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "a.row-img", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4002, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".bloc-gauche" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:20115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4002, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".bloc-gauche" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.bloc-gauche", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".voiraussi-element", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4004, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.bloc-gauche", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#menu" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4005, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#menu" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + ".menu-chaine" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4006, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + ".menu-chaine" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#menu" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4008, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#menu" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + ".menu-rubrique" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4008, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 9 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + ".menu-rubrique" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 6, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-liste a.menu-liste-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4011, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 6, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-mosaique.toutes-les-emissions a.menu-mosaique-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4014, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 6, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-mosaique.les-plus-regardes a.menu-mosaique-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4015, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 9, + "elements": [ + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-liste a.menu-liste-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4015, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 9, + "elements": [ + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-mosaique.toutes-les-emissions a.menu-mosaique-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4018, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 9, + "elements": [ + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-display-mosaique.les-plus-regardes a.menu-mosaique-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4019, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4019, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "a.plusregardes-lien", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4021, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#on-en-a-parle-tag" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4021, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#on-en-a-parle-tag" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "#panel-resultat-container" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4022, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + ".link-vignette", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4022, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".container-recherche-bottom" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:21199 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4022, + "loadingStep": "domContentLoaded", + "time": 3, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".container-recherche-bottom" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "#panel-resultat-container" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4025, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + ".link-vignette", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4025, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#autocomplete-on-en-a-parle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4025, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#autocomplete-on-en-a-parle" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".autocomplete-link", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4026, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".container-recherche-bottom" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:21446 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4027, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".container-recherche-bottom" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "#lien-onglet-on-en-a-parle", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4029, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#form-recherche-tendance" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4029, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#form-recherche-tendance" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "submit", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4029, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#player-onEnAParle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4029, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#player-onEnAParle" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + ".link-vignette", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4030, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#player-onEnAParle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4030, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#player-onEnAParle" + ] + }, + "resultsNumber": 0 + } + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + ".loupe", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4030, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#page" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4031, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#page" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "section#page", + "tree": { + "body": { + "section#page": 1 + } + } + } + ] + }, + "arguments": [ + "click", + "#ticker", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4031, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "section#page", + "tree": { + "body": { + "section#page": 1 + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / send@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:15466 / ajax@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:10716 / autoCompletePluzz@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:1049 / http://pluzz.francetv.fr/:29:34 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4034, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - prop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "{\"async\":true,\"src\":\"http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste\"}" + ] + }, + "backtrace": "autoCompletePluzz@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:1049 / http://pluzz.francetv.fr/:29:34 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4034, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load error", + "(function)" + ] + }, + "backtrace": "autoCompletePluzz@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:1049 / http://pluzz.francetv.fr/:29:34 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4035, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "error" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load" + ] + } + } + } + ] + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "autoCompletePluzz@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:1049 / http://pluzz.francetv.fr/:29:34 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4035, + "loadingStep": "domContentLoaded", + "time": 2 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "http://pluzz.francetv.fr/:29:34 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4038, + "loadingStep": "domContentLoaded" + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".onglet-home" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:9705 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4038, + "loadingStep": "domContentLoaded", + "time": 4, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".onglet-home" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.onglet-home", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li.onglet-home": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4042, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.onglet-home", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li.onglet-home": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.onglet-home", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li.onglet-home": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#menu" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4043, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#menu" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + "click", + ".pluzz-box", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4045, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".onglet-chaine, .onglet-rubrique" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:9835 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4046, + "loadingStep": "domContentLoaded", + "time": 5, + "resultsNumber": 16 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".onglet-chaine, .onglet-rubrique" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 16, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-la_1ere", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-la_1ere": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france2", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france3", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france3": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france4", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france4": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france5", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france5": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-franceo", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-franceo": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-info", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-info": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-documentaire", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-documentaire": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-seriefiction", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-seriefiction": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-magazine", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-magazine": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-culture", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-culture": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-jeunesse", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeunesse": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-divertissement", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-divertissement": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-sport", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-sport": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-jeu", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeu": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-regions", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-regions": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4051, + "loadingStep": "domContentLoaded", + "time": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 16, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-la_1ere", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-la_1ere": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france2", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france3", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france3": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france4", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france4": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-france5", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france5": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-franceo", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-franceo": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-info", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-info": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-documentaire", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-documentaire": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-seriefiction", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-seriefiction": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-magazine", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-magazine": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-culture", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-culture": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-jeunesse", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeunesse": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-divertissement", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-divertissement": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-sport", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-sport": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-jeu", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeu": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#onglet-regions", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-regions": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-la_1ere", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-la_1ere": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-france2", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france2": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-france3", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france3": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-france4", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france4": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-france5", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-france5": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-franceo", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-chaines": { + "ul[0]": { + "li#onglet-franceo": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-info", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-info": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-documentaire", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-documentaire": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-seriefiction", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-seriefiction": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-magazine", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-magazine": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-culture", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-culture": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-jeunesse", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeunesse": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-divertissement", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-divertissement": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-sport", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-sport": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-jeu", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-jeu": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#onglet-regions", + "tree": { + "body": { + "div#onglet": { + "div#onglet-inner": { + "div.onglet-rubriques": { + "ul[0]": { + "li#onglet-regions": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ], + "warning": true, + "eventNotDelegated": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".menu-chaine,.menu-rubrique" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:12256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4057, + "loadingStep": "domContentLoaded", + "time": 4, + "resultsNumber": 15 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".menu-chaine,.menu-rubrique" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 15, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-btn-liste:not('.on')", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4061, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 15, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-btn-mosaique:not('.on')", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4062, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 15, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-gauche-lien.programmes:not('.on')", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4062, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 15, + "elements": [ + { + "type": "domElement", + "element": "div#menu-la_1ere", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-la_1ere": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france2", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france2": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france3", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france3": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france4", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france4": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-france5", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-france5": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-franceo", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-franceo": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-info", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-info": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-documentaire", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-documentaire": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-seriefiction", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-seriefiction": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-magazine", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-magazine": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-culture", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-culture": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeunesse", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeunesse": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-divertissement", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-divertissement": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-sport", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-sport": 1 + } + } + } + } + }, + { + "type": "domElement", + "element": "div#menu-jeu", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#menu-jeu": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "click", + ".menu-gauche-lien.plus-regardes:not('.on')", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4062, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#lienFermer" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4063, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#lienFermer" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a#lienFermer", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#fermer": { + "a#lienFermer": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4063, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a#lienFermer", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#fermer": { + "a#lienFermer": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a#lienFermer", + "tree": { + "body": { + "div#menu": { + "div#menu-inner": { + "div#fermer": { + "a#lienFermer": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#enVad" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4063, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#enVad" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#enVad", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": 1 + } + } + } + } + } + ] + }, + "arguments": [ + ".vad-top-titre" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4064, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#enVad", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": 1 + } + } + } + } + } + ] + }, + "arguments": [ + ".vad-top-titre" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#enVad", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4065, + "loadingStep": "domContentLoaded", + "time": 9 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4074, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4075, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4077, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4078, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4079, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4079, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4080, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4080, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4082, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4082, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4082, + "loadingStep": "domContentLoaded", + "time": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4088, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4089, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4090, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4091, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4091, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4092, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4092, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4092, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4093, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4094, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4094, + "loadingStep": "domContentLoaded", + "time": 4 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4098, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4099, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4101, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4102, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4102, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4102, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4103, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4103, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4104, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4104, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4104, + "loadingStep": "domContentLoaded", + "time": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4109, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4110, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4112, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4113, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4114, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4114, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4114, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4115, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4115, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4116, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4116, + "loadingStep": "domContentLoaded", + "time": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enVad > div.bloc-gauche > div.vad-top-video > a.vad-top > div.vad-top-description > div.vad-top-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4122, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4123, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4125, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4126, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4127, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4127, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4127, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4127, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4128, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/:48:23458 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4128, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#btn-nosrecommandations" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4129, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#btn-nosrecommandations" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - hasClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#btn-nosrecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-nosrecommandations": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "active" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4130, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4130, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "a" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4131, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 4 + } + }, + { + "data": { + "type": "jQuery - hasClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "reco-unique" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4131, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7312 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4132, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7312 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4132, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7312 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4133, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a.plusregardes-lien.ellipsis-container" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7312 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4133, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7312 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115/ j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4133, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + }, + "backtrace": "updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7431 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4134, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "a" + ] + }, + "backtrace": "customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4135, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 4 + } + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + ] + }, + "arguments": [ + "onclick", + "return xt_adc(this, 'PUB-[reco]-[edito]-[]-[]-[]-[]-[]-[]')" + ] + }, + "backtrace": "customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4135, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".plusregardes-lien.placeholder" + ] + }, + "backtrace": "d@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8781 / updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7431 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4135, + "loadingStep": "domContentLoaded", + "time": 3, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".plusregardes-lien.placeholder" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.plusregardes-lien.placeholder", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": { + "div.plusregardes-lien.placeholder": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4138, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.plusregardes-lien.placeholder", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": { + "div.plusregardes-lien.placeholder": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - after", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > a.plusregardes-lien.ellipsis-container" + ] + }, + "backtrace": "customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4140, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a.plusregardes-lien.ellipsis-container", + "tree": { + "DocumentFragment": { + "a.plusregardes-lien.ellipsis-container": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + }, + "backtrace": "updateRecommandation@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:7431 / customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4141, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#nosRecommandations" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".video-img" + ] + }, + "backtrace": "customRecommandations@http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:590 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8115 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4142, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".video-img" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#nosRecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#bloc-enReplay": { + "div#nosRecommandations": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#direct" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4146, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#direct" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#direct", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".video-titre" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4147, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#direct", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".video-titre" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#direct", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4148, + "loadingStep": "domContentLoaded", + "time": 6 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[0] > a.direct-lien.france2 > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4154, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4155, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4157, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4158, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4159, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4159, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4160, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4160, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4161, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4161, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[0]": { + "a.direct-lien.france2": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4162, + "loadingStep": "domContentLoaded", + "time": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[1] > a.direct-lien.france3 > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4167, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4168, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4170, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4171, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4172, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4172, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4172, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4172, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4174, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4175, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[1]": { + "a.direct-lien.france3": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4175, + "loadingStep": "domContentLoaded", + "time": 7 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[2] > a.direct-lien.france4 > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4183, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4184, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4185, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4187, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4187, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4187, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4188, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4188, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4188, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4189, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[2]": { + "a.direct-lien.france4": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4189, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[3] > a.direct-lien.france5 > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4192, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4193, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4194, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4195, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4196, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4196, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4196, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4197, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4197, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4198, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4199, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4200, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4200, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4201, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[3]": { + "a.direct-lien.france5": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4201, + "loadingStep": "domContentLoaded", + "time": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[4] > a.direct-lien.franceo > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4206, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4206, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4207, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4208, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4209, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115/ ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4209, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4209, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4209, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4210, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4210, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[4]": { + "a.direct-lien.franceo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - wrapInner", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4210, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "jQuery - wrapAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + } + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "true" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[Object]" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div[0]", + "tree": { + "DocumentFragment": { + "div[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#enDirect > div[2] > ul#direct > li[5] > a.direct-lien.franceinfo > div.video-description > div.video-titre > #text[0]" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "#text[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "#text[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "#text[0]", + "tree": { + "DocumentFragment": { + "#text[0]": 1 + } + } + } + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4213, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">div" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "true" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4214, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4215, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4215, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - text", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4216, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4216, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4216, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4216, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4217, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / i@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:4950 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5619 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / ellipsis@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:2:5592 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8256 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4217, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.video-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": { + "ul#direct": { + "li[5]": { + "a.direct-lien.franceinfo": { + "div.video-description": { + "div.video-titre": 1 + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".guide-tranche" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8337 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4217, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 3 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".guide-tranche" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 3, + "elements": [ + { + "type": "domElement", + "element": "li#tranche-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-1": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#tranche-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#tranche-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-3": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4219, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 3, + "elements": [ + { + "type": "domElement", + "element": "li#tranche-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-1": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#tranche-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#tranche-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-3": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#tranche-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#tranche-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-2": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#tranche-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.sub-tab": { + "li#tranche-3": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".guide-jour" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:8546 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4219, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 9 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".guide-jour" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 9, + "elements": [ + { + "type": "domElement", + "element": "li#jour-8", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-8": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-7", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-7": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-6", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-6": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-5", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-5": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-4", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-4": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-3": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-1": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-0", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-0": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4221, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 9, + "elements": [ + { + "type": "domElement", + "element": "li#jour-8", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-8": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-7", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-7": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-6", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-6": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-5", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-5": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-4", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-4": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-3": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-2": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-1": 1 + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#jour-0", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-0": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-8", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-8": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-7", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-7": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-6", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-6": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-5", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-5": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-4", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-4": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-3", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-3": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-2", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-2": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#jour-0", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "ul.tab": { + "li#jour-0": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ], + "warning": true, + "eventNotDelegated": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#guide-jour-1" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4223, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#guide-jour-1" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".retro-chaine-inner img" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4223, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 9 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".retro-chaine-inner img" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "img" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#guide-jour-1" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4225, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#guide-jour-1" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".retro-chaine-inner" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4225, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".retro-chaine-inner" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#guide-jour-1", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:25986 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4226, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4227, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "false", + "false" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4227, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - empty", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4228, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "box-sizing" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4229, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingTop" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4229, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4229, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingBottom" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4229, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4229, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4230, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4230, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4230, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - scrollLeft", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4230, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"overflow\":\"hidden\",\"padding\":0}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4231, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4231, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 188 + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspPane" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4232, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4233, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "padding", + "0px 0px 0px 0px" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4233, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4233, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 9 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner >..." + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4233, + "loadingStep": "domContentLoaded", + "time": 4 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4237, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4237, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4237, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspContainer" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4237, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4237, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "{\"width\":\"188px\",\"height\":\"554px\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4238, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspPane" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4238, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[0] > div.retro-chaine.france2 > div.retro-chaine-inner" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4238, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "auto" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4239, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4240, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspVerticalBar" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4241, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4242, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspTrack" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDrag" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4243, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDragTop", + "DocumentFragment > div.jspDragBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4244, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4245, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4246, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4246, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4246, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4246, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4246, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspCap.jspCapTop", + "DocumentFragment > div.jspTrack", + "DocumentFragment > div.jspCap.jspCapBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4247, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4248, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4249, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4250, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4250, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4251, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - hover", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4253, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - mouseenter", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseenter", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - mouseleave", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseleave", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseout" + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4254, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "554px" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4255, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4255, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 167 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4256, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - position", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:15582 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4256, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4258, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "60px" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4258, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4258, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "top", + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4259, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4259, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4260, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "MozMousePixelScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DomMouseScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel" + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "fontSize" + ] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4262, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4263, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4263, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4263, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4263, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - focus", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7526 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4264, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex", + 0 + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4265, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4265, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4265, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4266, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "outline", + "" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4266, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7546 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4266, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4267, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:25986 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4267, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4268, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "false", + "false" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4268, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - empty", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4268, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "box-sizing" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4269, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingTop" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4269, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4270, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingBottom" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4270, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4270, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4270, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4270, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4271, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - scrollLeft", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4271, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"overflow\":\"hidden\",\"padding\":0}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4271, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4271, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 188 + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspPane" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4272, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "padding", + "0px 0px 0px 0px" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4273, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4273, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 9 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner >..." + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4273, + "loadingStep": "domContentLoaded", + "time": 6 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte.pluzz-box", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte.pluzz-box": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte.pluzz-box", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte.pluzz-box": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4279, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4280, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4280, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspContainer" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4280, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4280, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "{\"width\":\"188px\",\"height\":\"554px\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4280, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspPane" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4281, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[1] > div.retro-chaine.france3 > div.retro-chaine-inner" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4282, + "loadingStep": "domContentLoaded", + "time": 5 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "auto" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4287, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4290, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4290, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4290, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4290, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4290, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspVerticalBar" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4291, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4291, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4291, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4291, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4292, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4292, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4292, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4292, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspTrack" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537/ f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4293, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDrag" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4294, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4295, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4296, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4296, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4296, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4297, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4297, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4297, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDragTop", + "DocumentFragment > div.jspDragBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4297, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4299, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4300, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4300, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4300, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4300, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4301, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspCap.jspCapTop", + "DocumentFragment > div.jspTrack", + "DocumentFragment > div.jspCap.jspCapBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4301, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4304, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4306, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4307, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4308, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4309, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - hover", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4311, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - mouseenter", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseenter", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - mouseleave", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseleave", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseout" + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4313, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "554px" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4314, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4315, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 167 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4317, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - position", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:15582 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4318, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4321, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "60px" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4321, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4321, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "top", + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4322, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4322, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4322, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "MozMousePixelScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DomMouseScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel" + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "fontSize" + ] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4324, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4324, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4324, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4324, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4325, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - focus", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7526 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4325, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex", + 0 + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4326, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4326, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4326, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4326, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "outline", + "" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4327, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7546 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4327, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4327, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:25986 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4328, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4328, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "false", + "false" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4328, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - empty", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4329, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "box-sizing" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4329, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingTop" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingBottom" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - scrollLeft", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"overflow\":\"hidden\",\"padding\":0}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4330, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4331, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4332, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 188 + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4332, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4333, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4333, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4333, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspPane" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4333, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4333, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "padding", + "0px 0px 0px 0px" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4334, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4334, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 12 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner >..." + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4334, + "loadingStep": "domContentLoaded", + "time": 7 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspContainer" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "{\"width\":\"188px\",\"height\":\"554px\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspPane" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4341, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[2] > div.retro-chaine.france4 > div.retro-chaine-inner" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4342, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "auto" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4343, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspVerticalBar" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4345, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4346, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4346, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4346, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4346, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4346, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4347, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4347, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4347, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspTrack" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4347, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4347, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314/ n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4348, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4348, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4348, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDrag" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4348, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4349, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4349, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4350, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4350, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4350, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4351, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4351, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4352, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4352, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4352, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4352, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDragTop", + "DocumentFragment > div.jspDragBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4353, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4353, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4354, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4354, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4354, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4354, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4354, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspCap.jspCapTop", + "DocumentFragment > div.jspTrack", + "DocumentFragment > div.jspCap.jspCapBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4355, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4356, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4357, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4357, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4358, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4359, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - hover", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4360, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - mouseenter", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseenter", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - mouseleave", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseleave", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseout" + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4362, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "554px" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4363, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4363, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 167 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4364, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - position", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:15582 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4364, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4365, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "60px" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4366, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4366, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "top", + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4366, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4366, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4366, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "MozMousePixelScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DomMouseScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel" + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "fontSize" + ] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4368, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4369, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4369, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4370, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4370, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - focus", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7526 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4370, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex", + 0 + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4371, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4371, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4371, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4371, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "outline", + "" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4372, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7546 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4372, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4372, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:25986 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4373, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4373, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "false", + "false" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4373, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - empty", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4374, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "box-sizing" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4375, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingTop" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingBottom" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4376, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4377, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - scrollLeft", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4377, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"overflow\":\"hidden\",\"padding\":0}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4377, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4377, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4378, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 188 + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4378, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4378, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4378, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspPane" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "padding", + "0px 0px 0px 0px" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 10 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner >..." + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4379, + "loadingStep": "domContentLoaded", + "time": 10 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4389, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4389, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4389, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspContainer" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4389, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4390, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "{\"width\":\"188px\",\"height\":\"554px\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4390, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspPane" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4390, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[3] > div.retro-chaine.france5 > div.retro-chaine-inner" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4392, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "auto" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4395, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4400, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4400, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4400, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4400, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4400, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspVerticalBar" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4401, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14456 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4401, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4402, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4402, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4402, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4403, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14499 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4403, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4403, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4403, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4404, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspTrack" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4404, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14537 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4404, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4405, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4405, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4405, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDrag" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4406, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14574 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4406, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4407, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4408, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4408, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragTop" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4408, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14610 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4408, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4409, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4409, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4409, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspDragBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4410, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14642 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4410, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDragTop", + "DocumentFragment > div.jspDragBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4410, + "loadingStep": "domContentLoaded", + "time": 3 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragTop", + "tree": { + "DocumentFragment": { + "div.jspDragTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDragBottom", + "tree": { + "DocumentFragment": { + "div.jspDragBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4413, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspDrag", + "tree": { + "DocumentFragment": { + "div.jspDrag": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4414, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4414, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4414, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspCap.jspCapBottom" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4414, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:14679 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4418, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspCap.jspCapTop", + "DocumentFragment > div.jspTrack", + "DocumentFragment > div.jspCap.jspCapBottom" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4419, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapTop", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapTop": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspTrack", + "tree": { + "DocumentFragment": { + "div.jspTrack": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspCap.jspCapBottom", + "tree": { + "DocumentFragment": { + "div.jspCap.jspCapBottom": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4421, + "loadingStep": "domContentLoaded", + "time": 5 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4426, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4427, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspTrack" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4428, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspDrag" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4429, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ">.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - hover", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4431, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - mouseenter", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseenter", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - mouseleave", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + } + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseleave", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseout" + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4432, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "554px" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4432, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4432, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 167 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4433, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - position", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:15582 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7445 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4433, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "jQuery - offset", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspVerticalBar", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - outerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4434, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "60px" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4434, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspDrag", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4434, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "top", + 0 + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7453 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4435, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4435, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4435, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "MozMousePixelScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DomMouseScroll" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel" + ] + } + } + }, + { + "data": { + "type": "jQuery - offsetParent", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "fontSize" + ] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + } + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4437, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4437, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchstart" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4437, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchmove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4438, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "touchend" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4438, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click.jsp-touchclick", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - focus", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7526 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4439, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex", + 0 + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4439, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4439, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4439, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4439, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "outline", + "" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4440, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp" + ] + }, + "backtrace": "f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:7546 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4440, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "(function)" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4440, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown.jsp", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspTrack", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspVerticalBar": { + "div.jspTrack": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:25986 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4441, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4441, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - clone", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "false", + "false" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4441, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - empty", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4442, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div.retro-chaine-inner" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "box-sizing" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4443, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingTop" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4443, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4443, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingBottom" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4443, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4443, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingLeft" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4444, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "paddingRight" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4444, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - scrollTop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4445, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - scrollLeft", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4445, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"overflow\":\"hidden\",\"padding\":0}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4445, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - innerWidth", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4445, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - innerHeight", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4447, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + 188 + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4447, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4448, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4448, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4448, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspPane" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4448, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6724 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4449, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "padding", + "0px 0px 0px 0px" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4450, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4450, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 9 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner >..." + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4450, + "loadingStep": "domContentLoaded", + "time": 7 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-vignette": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-vignette", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-vignette": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "domElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "a.programme-guide.guide-texte": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a.programme-guide.guide-texte", + "tree": { + "DocumentFragment": { + "a.programme-guide.guide-texte": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragment" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspContainer" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / f@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:6794 / e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "{\"width\":\"188px\",\"height\":\"554px\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspPane" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4457, + "loadingStep": "domContentLoaded", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspPane", + "tree": { + "DocumentFragment": { + "div.jspPane": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "body > section#page > div.alternate-color > div#guideReplay > div#guide-container > div#guide-jour-1 > div#guide-tranche-3 > ul.retroGuide > li[4] > div.retro-chaine.franceo > div.retro-chaine-inner" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4459, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div.jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspContainer", + "tree": { + "DocumentFragment": { + "div.jspContainer": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "auto" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4460, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "overflow", + "" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4461, + "loadingStep": "domContentLoaded", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - removeClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4462, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - width", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4462, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspPane", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": { + "div.jspPane": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "{\"top\":0,\"left\":0,\"width\":188}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4462, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4463, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mousewheel.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex", + "-1" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4463, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - removeAttr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "tabindex" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4463, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - unbind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp" + ] + }, + "backtrace": "e@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19228 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:26063 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / jScrollPane@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:19391 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:9894 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4463, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.jsp keypress.jsp", + "null", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 5, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4464, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 5, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jsp-scroll-y" + ] + } + } + } + ] + } + ], + "warning": true, + "eventNotDelegated": true + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "jspScrollable" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:10021 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4465, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".jspContainer" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:10021 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4465, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + ".jspContainer" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.retro-chaine-inner.jspScrollable", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": 1 + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "
" + ] + }, + "backtrace": "each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:10021 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4466, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.jspVerticalBar" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div.jspVerticalBar", + "tree": { + "DocumentFragment": { + "div.jspVerticalBar": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#btn-plusregardes, #btn-nosrecommandations, #btn-recounique" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:10026 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4467, + "loadingStep": "domContentLoaded", + "time": 2, + "resultsNumber": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#btn-plusregardes, #btn-nosrecommandations, #btn-recounique" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 2, + "elements": [ + { + "type": "domElement", + "element": "li#btn-plusregardes", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-plusregardes": 1 + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#btn-nosrecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-nosrecommandations": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4470, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 2, + "elements": [ + { + "type": "domElement", + "element": "li#btn-plusregardes", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-plusregardes": 1 + } + } + } + } + } + } + } + }, + { + "type": "domElement", + "element": "li#btn-nosrecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-nosrecommandations": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#btn-plusregardes", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-plusregardes": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li#btn-nosrecommandations", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enReplay": { + "div#tabReplay": { + "ul.tab": { + "li#btn-nosrecommandations": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#recherche" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4470, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#recherche" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "remove.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10995 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4472, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "remove.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "remove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "ui-autocomplete-input" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4473, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "autocomplete", + "off" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4474, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:17393 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4474, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:17393 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4475, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keypress" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "input.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:17393 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4476, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "input.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "input" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:17393 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4477, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "blur.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:17393 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4478, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "blur.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "blur" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "ul" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18723 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4479, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "ul" + } + ] + }, + "arguments": [ + "ui-autocomplete ui-front" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4479, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - closest", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + ".ui-front" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18792 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4480, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - appendTo", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "ul.ui-autocomplete.ui-front" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4480, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "ul.ui-autocomplete.ui-front" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "ul.ui-autocomplete.ui-front" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "DocumentFragment": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "DocumentFragment": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "DocumentFragment": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "body": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + }, + "arguments": [ + "remove.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10995 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4481, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "body": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + }, + "arguments": [ + "remove.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.ui-autocomplete.ui-front", + "tree": { + "body": { + "ul.ui-autocomplete.ui-front": 1 + } + } + } + ] + }, + "arguments": [ + "remove" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ui-menu ui-widget ui-widget-content ui-corner-all" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4482, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-icon" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4482, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-icon" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - toggleClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ui-menu-icons", + "false" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4483, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - removeClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ui-menu-icons" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "{\"role\":null,\"tabIndex\":0}" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4483, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "click.menu1", + "(function)" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4484, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "click.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - delegate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-menu-item > a", + "mousedown.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4484, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mousedown.menu1", + ".ui-menu-item > a", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mousedown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - delegate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-state-disabled > a", + "click.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4485, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "click.menu1", + ".ui-state-disabled > a", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - delegate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-menu-item:has(a)", + "click.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4485, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "click.menu1", + ".ui-menu-item:has(a)", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - delegate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-menu-item", + "mouseenter.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4485, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseenter.menu1", + ".ui-menu-item", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseleave.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4486, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseleave.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseout" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - delegate", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-menu", + "mouseleave.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4486, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mouseleave.menu1", + ".ui-menu", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "focus.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4487, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "focus.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "focus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "blur.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4487, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "blur.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "blur" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "keydown.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:25043 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4487, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "keydown.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "keydown" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ul" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4488, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ul" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ul" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-icon" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4489, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-icon" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - toggleClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ui-menu-icons", + "false" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4489, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - removeClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "ui-menu-icons" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "ui-menu ui-widget ui-widget-content ui-corner-all" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4489, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - hide", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4489, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "{\"role\":null,\"aria-hidden\":\"true\",\"aria-expanded\":\"false\"}" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ":not(.ui-menu-item):has(a)" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "ui-menu-item" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "role", + "presentation" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "a" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true, + "jQueryCallOnEmptyObject": true + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "ui-corner-all" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 /http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "{\"tabIndex\":-1}" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ":not(.ui-menu-item)" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4490, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - children", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + ".ui-state-disabled" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4491, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "aria-disabled", + "true" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26101 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4491, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "click.menu1", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:26112 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18800 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4491, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "click.menu1", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - hide", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4492, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mousedown.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18845 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4492, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "mousedown.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menufocus.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18845 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4492, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menufocus.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menufocus" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menuselect.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18845 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menuselect.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + } + ] + }, + "arguments": [ + "menuselect" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "span" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:19982 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "span" + } + ] + }, + "arguments": [ + "role", + "status" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:19982 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - attr", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "span" + } + ] + }, + "arguments": [ + "aria-live", + "polite" + ] + }, + "backtrace": "_create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:19982 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "span" + } + ] + }, + "arguments": [ + "ui-helper-hidden-accessible" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "span.ui-helper-hidden-accessible" + } + ] + }, + "arguments": [ + "body > div#header > div#header-inner > form#menu-recherche > input#recherche" + ] + }, + "backtrace": "_createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4493, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - before", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "span.ui-helper-hidden-accessible" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span.ui-helper-hidden-accessible" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "span.ui-helper-hidden-accessible", + "tree": { + "DocumentFragment": { + "span.ui-helper-hidden-accessible": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "span.ui-helper-hidden-accessible", + "tree": { + "DocumentFragment": { + "span.ui-helper-hidden-accessible": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "form#menu-recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": 1 + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "span.ui-helper-hidden-accessible", + "tree": { + "DocumentFragment": { + "span.ui-helper-hidden-accessible": 1 + } + } + }, + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - bind", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "beforeunload.autocomplete0", + "(function)" + ] + }, + "backtrace": "_on@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:12932 / _create@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:20105 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:18359 / _createWidget@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:11207 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:13118 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:16249 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:1:10400 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:2497 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4495, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "beforeunload.autocomplete0", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "beforeunload" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:4036 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4495, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + "click", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4496, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#autocomplete-container" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4496, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#autocomplete-container" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-container", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4497, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-container", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - keyup", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4497, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keyup", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keyup" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - keydown", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4497, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "input#recherche", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "input#recherche": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "keydown", + "null", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#autocomplete-pluzz" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4497, + "loadingStep": "domContentLoaded", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#autocomplete-pluzz" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-pluzz", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-pluzz": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseup", + "#results-pluzz li.ui-menu-item > a", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4498, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-pluzz", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-pluzz": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseup" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#autocomplete-pluzz" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4498, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#autocomplete-pluzz" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-pluzz", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-pluzz": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover", + "#results-pluzz li.ui-menu-item > a", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4498, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#autocomplete-pluzz", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-pluzz": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4499, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseup", + "li.ui-menu-item > a", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4499, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseup" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4499, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover", + "li.ui-menu-item > a", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4499, + "loadingStep": "domContentLoaded", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4500, + "loadingStep": "domContentLoaded", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#results-on-en-a-parle" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "li.ui-menu-item > a", + "(function)" + ] + }, + "backtrace": "fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29807 / I@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29992 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4500, + "loadingStep": "domContentLoaded", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#results-on-en-a-parle", + "tree": { + "body": { + "div#header": { + "div#header-inner": { + "form#menu-recherche": { + "div#autocomplete-container": { + "div#autocomplete-on-en-a-parle": { + "div#results-on-en-a-parle": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - off", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "ready" + ] + }, + "backtrace": "nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4500, + "loadingStep": "domContentLoaded", + "time": 0 + } + }, + { + "data": { + "type": "domContentLoadedEnd", + "timestamp": 4508, + "loadingStep": "domContentLoadedEnd" + }, + "windowPerformance": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "global code@http://cdn.krxd.net/controltag?confid=J1mXKWTY:77:3", + "timestamp": 4543, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "global code@http://cdn.krxd.net/controltag?confid=J1mXKWTY:77:3", + "timestamp": 4543, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 22 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "global code@http://cdn.krxd.net/controltag?confid=J1mXKWTY:77:3", + "timestamp": 4543, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4664, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 23 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "link" + ] + }, + "backtrace": "global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4665, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "link" + }, + { + "type": "head" + } + ] + }, + "backtrace": "global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4665, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4666, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + "background-image" + ] + }, + "backtrace": "searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4667, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "html" + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + "background-position" + ] + }, + "backtrace": "searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4667, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "html" + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + "background-position", + "0% 28px" + ] + }, + "backtrace": "searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4667, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3643 / searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4667, + "loadingStep": "domContentLoadedEnd" + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "body" + }, + null + ] + }, + "backtrace": "onBody@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3456 / searchBody@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2914 / onDom@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3294 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3643 / searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4667, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "searchBody@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2914 / onDom@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3294 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3643 / searchJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3001 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / init@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:2687 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7618 / global code@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:7621", + "timestamp": 4668, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 4668, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 4668, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "body" + }, + null + ] + }, + "backtrace": "nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 4671, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:142 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54859 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:86526 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54859 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54943 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54947 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54717 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:54720 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23371 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:49513 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23371 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:48418 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23371 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:46797 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23371 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23455 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23459 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23229 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:23232 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:17744 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:3804 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:2728 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:2052 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:1944 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:1459 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:31503 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:18882 / e@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:117 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1178 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5310, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29221 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:19056 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5319, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29221 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:19056 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5320, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "unload" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29221 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:19056 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5320, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "beforeunload" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29221 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:19056 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5320, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#kx-proxy-J1mXKWTY" + ] + }, + "backtrace": "init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48530 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5326, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:18104 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48645 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5327, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "iframe#kx-proxy-J1mXKWTY", + "tree": { + "div": { + "iframe#kx-proxy-J1mXKWTY": 1 + } + } + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48645 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5328, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "iframe#kx-proxy-J1mXKWTY", + "tree": { + "div": { + "iframe#kx-proxy-J1mXKWTY": 1 + } + } + } + ] + }, + "arguments": [ + "error" + ] + }, + "backtrace": "init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48645 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5328, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "iframe#kx-proxy-J1mXKWTY", + "tree": { + "div": { + "iframe#kx-proxy-J1mXKWTY": 1 + } + } + } + ] + }, + "arguments": [ + "readystatechange" + ] + }, + "backtrace": "init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48645 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5328, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe#kx-proxy-J1mXKWTY", + "tree": { + "div": { + "iframe#kx-proxy-J1mXKWTY": 1 + } + } + } + ] + }, + "backtrace": "insert@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:36452 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:18224 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48645 / client@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46632 / init@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:20187 / Krux@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:1187 / http://cdn.krxd.net/controltag?confid=J1mXKWTY:72:9 / onreadystatechange@http://cdn.krxd.net/controltag?confid=J1mXKWTY:30:17", + "timestamp": 5328, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:507 / http://static.francetv.fr/pom/audience/audience.min.js:2:587 / r@http://static.francetv.fr/pom/audience/audience.min.js:2:258 / http://static.francetv.fr/pom/audience/audience.min.js:2:306 / http://static.francetv.fr/pom/audience/audience.min.js:2:1981 / r@http://static.francetv.fr/pom/audience/audience.min.js:2:258 / t@http://static.francetv.fr/pom/audience/audience.min.js:2:422 / global code@http://static.francetv.fr/pom/audience/audience.min.js:2:438", + "timestamp": 5345, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5364, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.metanav" + }, + { + "type": "domElement", + "element": "div#eShowPubx02", + "tree": { + "body": { + "div#eShowPubx02": 1 + } + } + } + ] + }, + "backtrace": "onBodyOrCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3729 / onCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3145 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 5376, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".block li.pluzz" + ] + }, + "backtrace": "onNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3547 / injectNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6962 / onBodyAndCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3839 / onBodyOrCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3729 / onCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3145 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 5377, + "loadingStep": "domContentLoadedEnd", + "time": 3, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".block li.pluzz" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "li" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.pluzz", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "ul.block.transverse": { + "li.pluzz": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "current" + ] + }, + "backtrace": "onNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3547 / injectNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6962 / onBodyAndCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3839 / onBodyOrCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3729 / onCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3145 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 5380, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onNodeAndJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3924 / onNodeOrJq@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3796 / onNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3547 / injectNode@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6962 / onBodyAndCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3839 / onBodyOrCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3729 / onCss@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:3145 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 5381, + "loadingStep": "domContentLoadedEnd" + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5384, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5384, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 25 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5385, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div.block.plus" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5388, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div.block.plus" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - after", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.block.plus", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5390, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "ul.block.confidentialite.newsletter_link" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.block.confidentialite.newsletter_link", + "tree": { + "DocumentFragment": { + "ul.block.confidentialite.newsletter_link": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.block.confidentialite.newsletter_link", + "tree": { + "DocumentFragment": { + "ul.block.confidentialite.newsletter_link": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.block.confidentialite.newsletter_link", + "tree": { + "DocumentFragment": { + "ul.block.confidentialite.newsletter_link": 1 + } + } + }, + { + "type": "notAnElement", + "element": false + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div.block.plus" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5391, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div.block.plus" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "div" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - after", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.block.plus", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": 1 + } + } + } + } + } + ] + }, + "arguments": [ + "" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5392, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "ul.block.newsletter" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.block.newsletter", + "tree": { + "DocumentFragment": { + "ul.block.newsletter": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.block.newsletter", + "tree": { + "DocumentFragment": { + "ul.block.newsletter": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.block.newsletter", + "tree": { + "DocumentFragment": { + "ul.block.newsletter": 1 + } + } + }, + { + "type": "domElement", + "element": "ul.block.confidentialite.newsletter_link", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "ul.block.confidentialite.newsletter_link": 1 + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5514, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5515, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2167 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5570, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2167 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5571, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2171 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5573, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2171 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5573, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2175 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5575, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://static.francetv.fr/pom/audience/audience.min.js:2:2175 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 5575, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [] + }, + "backtrace": "handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246", + "timestamp": 5705, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / send@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:15466 / ajax@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:10716 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:235 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5709, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - prop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "{\"async\":true,\"src\":\"http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp\"}" + ] + }, + "backtrace": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:235 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5709, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load error", + "(function)" + ] + }, + "backtrace": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:235 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5709, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "error" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load" + ] + } + } + } + ] + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:235 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5710, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1452 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5711, + "loadingStep": "domContentLoadedEnd" + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#footer-transverse .ft-contact-link" + ] + }, + "backtrace": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1590 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1452 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5711, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#footer-transverse .ft-contact-link" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#footer-transverse" + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#footer-transverse", + "tree": { + "body": { + "div#footer-transverse": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.ft-contact-link", + "tree": { + "body": { + "div#footer-transverse": { + "div#ft-top-box": { + "div#ft-top": { + "ul#ft-top-link": { + "li.ft-contact-link": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1452 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5712, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.ft-contact-link", + "tree": { + "body": { + "div#footer-transverse": { + "div#ft-top-box": { + "div#ft-top": { + "ul#ft-top-link": { + "li.ft-contact-link": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "li.ft-contact-link", + "tree": { + "body": { + "div#footer-transverse": { + "div#ft-top-box": { + "div#ft-top": { + "ul#ft-top-link": { + "li.ft-contact-link": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".ui-widget-overlay" + ] + }, + "backtrace": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1982 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1452 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5712, + "loadingStep": "domContentLoadedEnd", + "time": 3, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".ui-widget-overlay" + ] + }, + "resultsNumber": 0 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ], + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1452 / global code@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:1943", + "timestamp": 5715, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 0, + "elements": [] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + } + } + ], + "jQueryCallOnEmptyObject": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5716, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5716, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#kx-proxy-J1mXKWTY" + ] + }, + "backtrace": "onload@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48787 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047", + "timestamp": 5758, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "message" + ] + }, + "backtrace": "listen@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:55770 / run@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:77651 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:25706 / run@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:86343 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:28607 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:46744 / onload@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:48834 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047", + "timestamp": 5759, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "unload" + ] + }, + "backtrace": "global code@http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js:39:133", + "timestamp": 5819, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "keydown" + ] + }, + "backtrace": "global code@http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js:39:133", + "timestamp": 5819, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "keyup" + ] + }, + "backtrace": "global code@http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js:39:133", + "timestamp": 5820, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - load", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "", + "timestamp": 5919, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load", + "null", + "(function)", + "undefined" + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5919, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script.lazyloadlight" + }, + { + "type": "head" + } + ] + }, + "backtrace": "g@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57145 / onerror@http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js:3:57016", + "timestamp": 5920, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://static.francetv.fr/pom/publicite/publicite.min.js:2:26412 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:15524 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:26035 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:15524 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15608 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15612 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15388 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15391 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:5179 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:10589 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:5179 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:9549 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:5179 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:7963 / e@http://static.francetv.fr/pom/publicite/publicite.min.js:2:5179 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:5263 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:5267 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:2510 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:2617 / t@http://static.francetv.fr/pom/publicite/publicite.min.js:2:65 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:2417 / global code@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21168", + "timestamp": 6129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://static.francetv.fr/pom/publicite/publicite.min.js:2:21141 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6133, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://static.francetv.fr/pom/publicite/publicite.min.js:2:21141 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6133, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "z@http://www.google-analytics.com/analytics.js:36:211 / http://www.google-analytics.com/analytics.js:45:370 / global code@http://www.google-analytics.com/analytics.js:45:570", + "timestamp": 6384, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 33 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "ba@http://www.google-analytics.com/analytics.js:5:398 / Sa@http://www.google-analytics.com/analytics.js:8:207 / D@http://www.google-analytics.com/analytics.js:6:727 / send@http://www.google-analytics.com/analytics.js:35:387 / http://www.google-analytics.com/analytics.js:18:359 / v@http://www.google-analytics.com/analytics.js:43:313 / D@http://www.google-analytics.com/analytics.js:42:253 / N@http://www.google-analytics.com/analytics.js:45:257 / rc@http://www.google-analytics.com/analytics.js:36:178 / z@http://www.google-analytics.com/analytics.js:36:211 / http://www.google-analytics.com/analytics.js:45:370 / global code@http://www.google-analytics.com/analytics.js:45:570", + "timestamp": 6399, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "ba@http://www.google-analytics.com/analytics.js:5:398 / Sa@http://www.google-analytics.com/analytics.js:8:207 / D@http://www.google-analytics.com/analytics.js:6:727 / send@http://www.google-analytics.com/analytics.js:35:387 / http://www.google-analytics.com/analytics.js:18:359 / v@http://www.google-analytics.com/analytics.js:43:313 / D@http://www.google-analytics.com/analytics.js:42:253 / N@http://www.google-analytics.com/analytics.js:45:257 / rc@http://www.google-analytics.com/analytics.js:36:178 / z@http://www.google-analytics.com/analytics.js:36:211 / http://www.google-analytics.com/analytics.js:45:370 / global code@http://www.google-analytics.com/analytics.js:45:570", + "timestamp": 6402, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:848 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6434, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:848 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6435, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:1606 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6439, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:1606 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 6439, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "", + "timestamp": 6543, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 35 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:63:21 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6545, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "tl_initTagman@http://cdn.tradelab.fr/tag/59763bfbc2.js:53:241 / http://cdn.tradelab.fr/tag/59763bfbc2.js:63:21 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6547, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 35 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img#imgTP" + }, + { + "type": "head" + } + ] + }, + "backtrace": "tl_initTagman@http://cdn.tradelab.fr/tag/59763bfbc2.js:53:241 / http://cdn.tradelab.fr/tag/59763bfbc2.js:63:21 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6547, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6550, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6551, + "loadingStep": "domContentLoadedEnd", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "iframe" + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + } + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe" + }, + { + "type": "head" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6553, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6554, + "loadingStep": "domContentLoadedEnd", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "iframe" + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + } + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe" + }, + { + "type": "head" + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/tag/59763bfbc2.js:128:13 / global code@http://cdn.tradelab.fr/tag/59763bfbc2.js:130:3", + "timestamp": 6557, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "", + "timestamp": 6825, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6825, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6826, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6826, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6827, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6827, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6827, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6827, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6828, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6828, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6828, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6828, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://cdn.tradelab.fr/seg.js?add=494671:6:332 / global code@http://cdn.tradelab.fr/seg.js?add=494671:6:352", + "timestamp": 6829, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [] + }, + "backtrace": "handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246", + "timestamp": 6952, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / success@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:371 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / x@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:19606 / c@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:15582 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246", + "timestamp": 6953, + "loadingStep": "domContentLoadedEnd" + } + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#ft-body-container" + ] + }, + "backtrace": "j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / add@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54257 / ready@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:29608 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24694 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / success@http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js:1:371 / j@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:27194 / fireWith@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:54761 / x@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:19606 / c@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:15582 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246", + "timestamp": 6953, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ft-body-container" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#ft-body-container", + "tree": { + "body": { + "div#footer-transverse": { + "div#ft-body-box": { + "div#ft-body": { + "div#ft-body-container": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "

    INFO

  • LES SITES" + ] + }, + "backtrace": "", + "timestamp": 6985, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "h4" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > ul.lessites" + ] + }, + "backtrace": "", + "timestamp": 6986, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lessites", + "tree": { + "DocumentFragment": { + "ul.lessites": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lessites", + "tree": { + "DocumentFragment": { + "ul.lessites": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lessites", + "tree": { + "DocumentFragment": { + "ul.lessites": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lessites", + "tree": { + "DocumentFragment": { + "ul.lessites": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6987, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Zouzous" + ] + }, + "backtrace": "", + "timestamp": 6987, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "last" + ] + }, + "backtrace": "", + "timestamp": 6988, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li.last" + ] + }, + "backtrace": "", + "timestamp": 6988, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li.last" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + }, + { + "type": "notAnElement", + "element": false + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6989, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Ludo" + ] + }, + "backtrace": "", + "timestamp": 6989, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6990, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li.last", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li.last": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6991, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Studio 4" + ] + }, + "backtrace": "", + "timestamp": 6991, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6992, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6992, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Nouvelles écritures" + ] + }, + "backtrace": "", + "timestamp": 6992, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6993, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6994, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "IRL" + ] + }, + "backtrace": "", + "timestamp": 6994, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6994, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6995, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Education" + ] + }, + "backtrace": "", + "timestamp": 6995, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6995, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6996, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "France télévisions" + ] + }, + "backtrace": "", + "timestamp": 6996, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 6997, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lessites", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lessites": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "ul.lesservices" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesservices", + "tree": { + "DocumentFragment": { + "ul.lesservices": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".plus .content" + ] + }, + "backtrace": "onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6022 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".plus .content" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "

    LES SERVICES

    " + ] + }, + "backtrace": "", + "timestamp": 6998, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "h4" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > ul.lesservices" + ] + }, + "backtrace": "", + "timestamp": 6999, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lesservices", + "tree": { + "DocumentFragment": { + "ul.lesservices": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesservices", + "tree": { + "DocumentFragment": { + "ul.lesservices": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesservices", + "tree": { + "DocumentFragment": { + "ul.lesservices": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lesservices", + "tree": { + "DocumentFragment": { + "ul.lesservices": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7000, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "FAQ" + ] + }, + "backtrace": "", + "timestamp": 7000, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "last" + ] + }, + "backtrace": "", + "timestamp": 7001, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li.last" + ] + }, + "backtrace": "", + "timestamp": 7001, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li.last" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + }, + { + "type": "notAnElement", + "element": false + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7002, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "La Boutique" + ] + }, + "backtrace": "", + "timestamp": 7002, + "loadingStep": "domContentLoadedEnd", + "time": 2 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7004, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li.last", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": { + "li.last": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7004, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "leclub francetv" + ] + }, + "backtrace": "", + "timestamp": 7005, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7005, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesservices", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesservices": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "ul.lesevenements" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesevenements", + "tree": { + "DocumentFragment": { + "ul.lesevenements": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:5993 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - find", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".plus .content" + ] + }, + "backtrace": "onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6022 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7006, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + }, + "children": [ + { + "data": { + "type": "jQuery - Sizzle call", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + ".plus .content" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "*" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "

    LES EVENEMENTS

    " + ] + }, + "backtrace": "", + "timestamp": 7007, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "h4" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "h4[0]", + "tree": { + "DocumentFragment": { + "h4[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > ul.lesevenements" + ] + }, + "backtrace": "", + "timestamp": 7008, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lesevenements", + "tree": { + "DocumentFragment": { + "ul.lesevenements": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesevenements", + "tree": { + "DocumentFragment": { + "ul.lesevenements": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "ul.lesevenements", + "tree": { + "DocumentFragment": { + "ul.lesevenements": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.content", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "ul.lesevenements", + "tree": { + "DocumentFragment": { + "ul.lesevenements": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7008, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "The Collection" + ] + }, + "backtrace": "", + "timestamp": 7008, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - addClass", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "last" + ] + }, + "backtrace": "", + "timestamp": 7009, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li.last" + ] + }, + "backtrace": "", + "timestamp": 7009, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li.last" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li.last", + "tree": { + "DocumentFragment": { + "li.last": 1 + } + } + }, + { + "type": "notAnElement", + "element": false + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7010, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Résultats élections" + ] + }, + "backtrace": "", + "timestamp": 7010, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7011, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li.last", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li.last": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7011, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Prodiges" + ] + }, + "backtrace": "", + "timestamp": 7011, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7012, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7013, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Les enquêtes de Vera" + ] + }, + "backtrace": "", + "timestamp": 7013, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7014, + "loadingStep": "domContentLoadedEnd", + "time": 6 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7020, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Le plein de sensations" + ] + }, + "backtrace": "", + "timestamp": 7020, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7021, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7022, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Lastman" + ] + }, + "backtrace": "", + "timestamp": 7022, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7023, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7024, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Dakar" + ] + }, + "backtrace": "", + "timestamp": 7024, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7024, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "li" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / onGotMenuPlus@http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:6130 / http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7025, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - append", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + "Chefs" + ] + }, + "backtrace": "", + "timestamp": 7025, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "li" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "a[0]", + "tree": { + "DocumentFragment": { + "a[0]": 1 + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - prepend", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "li" + ] + }, + "backtrace": "", + "timestamp": 7025, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "li" + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "ul.lesevenements", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": 1 + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "li[0]", + "tree": { + "DocumentFragment": { + "li[0]": 1 + } + } + }, + { + "type": "domElement", + "element": "li[0]", + "tree": { + "body": { + "div.metanav": { + "div.content": { + "div.block.plus": { + "div.content": { + "ul.lesevenements": { + "li[0]": 1 + } + } + } + } + } + } + } + } + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - click", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "(function)" + ] + }, + "backtrace": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007:1:98", + "timestamp": 7026, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "click", + "null", + "(function)", + "undefined" + ] + } + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + } + ] + }, + "arguments": [ + "click" + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "", + "timestamp": 7030, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 39 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / send@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:15466 / ajax@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:10716 / http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:15049 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 7147, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "jQuery - prop", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "{\"async\":true,\"src\":\"http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js\"}" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:15049 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 7148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - on", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load error", + "(function)" + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:15049 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 7148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + }, + "children": [ + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "error" + ] + } + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "arguments": [ + "load" + ] + } + } + } + ] + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js:1:15049 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 7148, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "img" + ] + }, + "backtrace": "global code@http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync:1:8", + "timestamp": 7820, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "tl_sync@http://cdn.tradelab.fr/tag/59763bfbc2.js:44:423 / global code@http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync:1:8", + "timestamp": 7820, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 40 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img" + }, + { + "type": "head" + } + ] + }, + "backtrace": "tl_sync@http://cdn.tradelab.fr/tag/59763bfbc2.js:44:423 / global code@http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync:1:8", + "timestamp": 7821, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 4 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "a" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "select" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "option" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "select" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "option" + } + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "input" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8128, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "tbody" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "link" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "form" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "nav" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "input" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "input" + } + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "input[4]", + "tree": { + "div": { + "input[4]": 1 + } + } + } + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8129, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "ready@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:50418 / init@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:49828 / X@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:48546 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:2:8541 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:2:10180 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8130, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "ready@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:50418 / init@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:49828 / X@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:48546 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:2:8541 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:2:10180 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8130, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8132, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#comment" + } + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6277 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8132, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "*" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6277 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8132, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8132, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8133, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8133, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByClassName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + ".e" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6661 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8133, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getElementsByClassName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + ".e" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6661 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8133, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 2 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8133, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#sizcache0054839268559589980" + }, + { + "type": "head" + } + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6895 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8134, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#sizcache005483926855958998" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:6895 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8134, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8134, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[selected]" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:14787 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8135, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + ":checked" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:14787 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8135, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8135, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + "[test^='']" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15043 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8135, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "arguments": [ + ":enabled" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15043 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8135, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:15858 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:3:16088 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8136, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8136, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "", + "timestamp": 8136, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "", + "timestamp": 8136, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery version change", + "callDetails": { + "arguments": [ + "version 1.8.3+1" + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:4:16150", + "timestamp": 8139, + "loadingStep": "domContentLoadedEnd" + }, + "error": true + }, + { + "data": { + "type": "createTextNode", + "callDetails": { + "arguments": [ + "" + ] + }, + "backtrace": "n@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:5:57726 / n@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:5:57702 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:6:11601 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:6:11610", + "timestamp": 8146, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "click" + ] + }, + "backtrace": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:13:12796 / i@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:1:22234 / http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:13:12741 / global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:13:12846", + "timestamp": 8162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - onDOMReady", + "callDetails": { + "arguments": [ + null + ] + }, + "backtrace": "global code@http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js:21:25812", + "timestamp": 8176, + "loadingStep": "domContentLoadedEnd" + } + }, + { + "data": { + "type": "jQuery - remove", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [] + }, + "backtrace": "handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246", + "timestamp": 8177, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + "*" + ] + }, + "resultsNumber": 0 + } + } + ] + }, + { + "data": { + "type": "querySelector", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#eShowPubx01 .adCtnt" + ] + }, + "backtrace": "onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8680, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "DIV" + ] + }, + "backtrace": "a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8681, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8683, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "div#eShowPubx01": { + "div.adCtnt": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8685, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8685, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "div#eShowPubx01": { + "div.adCtnt": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a[0]", + "tree": { + "div": { + "a[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:157:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8688, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "querySelector", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#eShowPubx02 .adCtnt" + ] + }, + "backtrace": "onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8689, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "DIV" + ] + }, + "backtrace": "a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8689, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8689, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "div#eShowPubx02": { + "div.adCtnt": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8689, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8690, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "div#eShowPubx02": { + "div.adCtnt": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "a[0]", + "tree": { + "div": { + "a[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:160:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8690, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "querySelector", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "#eShowPubMiddle .adCtnt" + ] + }, + "backtrace": "onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8690, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "DIV" + ] + }, + "backtrace": "a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8691, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8691, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8691, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8691, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:27:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8692, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:27:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8693, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:27:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8693, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:62:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8696, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:62:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8696, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:62:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8696, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:62:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8697, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:63:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8697, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:63:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8697, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / OAS_RICH@http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee:63:15 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / s@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11906 / a@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11272 / u@http://static.francetv.fr/pom/publicite/publicite.min.js:2:12278 / c@http://static.francetv.fr/pom/publicite/publicite.min.js:2:2291 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1795 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:39028", + "timestamp": 8697, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 9012, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#rubicon_chk_position_765596" + } + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 9013, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 9014, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 9014, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 9014, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9724, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9725, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9725, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9726, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9726, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 9726, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:109", + "timestamp": 10756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10757, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10:2:669", + "timestamp": 10757, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 10761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#rubicon_chk_position_658034" + } + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 10761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 10762, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 10763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 10763, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10939, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10939, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10939, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10941, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10941, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 10942, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:109", + "timestamp": 11221, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11221, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11221, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11221, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11222, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11222, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11223, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10:2:677", + "timestamp": 11223, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#rubicon_chk_position_200449" + } + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11227, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11227, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11227, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:43303 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11321, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links", + "tree": { + "div": { + "img.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links": 1 + } + } + } + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11322, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".kxhead[data-id='J1mXKWTY']" + ] + }, + "backtrace": "_@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44375 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11322, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / createHead@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:27985 / _@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44375 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11323, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "body" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div.kxhead", + "tree": { + "div": { + "div.kxhead": 1 + } + } + } + ] + }, + "backtrace": "_@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44375 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11323, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / p@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:6135 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:8180 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11326, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / p@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:6135 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:8180 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11326, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 56 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / p@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:6135 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:8180 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11326, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:33148 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11328, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:33148 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11328, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 57 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + }, + { + "type": "head" + } + ] + }, + "backtrace": "call@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:23989 / jsonp@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:39573 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:33148 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:43852 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:29291 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11328, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37277 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11343, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.kxhead", + "tree": { + "body": { + "div.kxhead": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "div": { + "span.kxtag.kxinvisible": 1 + } + } + } + ] + }, + "backtrace": "document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37294 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11343, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "SPAN" + ] + }, + "backtrace": "s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "body": { + "div.kxhead": { + "span.kxtag.kxinvisible": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "span": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102522 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104645 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11352, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11352, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_region']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:8:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11354, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_titre']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:10:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11355, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_code']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:12:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11355, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_rubriques']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:14:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11356, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_genre']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:16:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11356, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='csa']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:18:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11357, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='programme_chaine']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:20:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11358, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='og:type']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:22:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11358, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "meta[name='og:title']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / meta_name@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:37062 / scrape@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:38534 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45460 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45327 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:45046 / t@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:7150 / http://pluzz.francetv.fr/:24:7 / global code@http://pluzz.francetv.fr/:25:3 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104729 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11359, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37277 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.kxhead", + "tree": { + "body": { + "div.kxhead": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "div": { + "span.kxtag.kxinvisible": 1 + } + } + } + ] + }, + "backtrace": "document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37294 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "SPAN" + ] + }, + "backtrace": "s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "body": { + "div.kxhead": { + "span.kxtag.kxinvisible": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "span": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102522 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104645 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11361, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37277 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.kxhead", + "tree": { + "body": { + "div.kxhead": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "div": { + "span.kxtag.kxinvisible": 1 + } + } + } + ] + }, + "backtrace": "document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37294 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "SPAN" + ] + }, + "backtrace": "s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "body": { + "div.kxhead": { + "span.kxtag.kxinvisible": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "span": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102522 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104645 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11364, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "createElement@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:25447 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37277 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.kxhead", + "tree": { + "body": { + "div.kxhead": 1 + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "div": { + "span.kxtag.kxinvisible": 1 + } + } + } + ] + }, + "backtrace": "document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37294 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39613 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71462 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "SPAN" + ] + }, + "backtrace": "s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "span.kxtag.kxinvisible", + "tree": { + "body": { + "div.kxhead": { + "span.kxtag.kxinvisible": 1 + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "span": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102522 / _insertCursor@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:104645 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105403 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71473 / _callFunction@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102231 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102084 / _onScriptDone@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105043 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103979 / _writeScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:105421 / _handleScriptToken@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:103950 / _writeImpl@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102552 / write@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:102103 / a@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71419 / s@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:70767 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:71795 / R@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:36318 / document@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:37303 / deliver@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:10:39634 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44313 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / u@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44329 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44335 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:44502 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11365, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11382, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11383, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11383, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11384, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11384, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 11384, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "img.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links", + "tree": { + "body": { + "img.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links": 1 + } + } + }, + null + ] + }, + "backtrace": "nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11576, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:109", + "timestamp": 11860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#comment[0]", + "tree": { + "div": { + "#comment[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#comment[0]", + "tree": { + "div": { + "#comment[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11861, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15:2:689", + "timestamp": 11862, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11865, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "html" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#rubicon_chk_position_90339" + } + ] + }, + "backtrace": "http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11866, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11867, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11867, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / start@http://ads.rubiconproject.com/ad/9585.js:1:21302 / http://ads.rubiconproject.com/ad/9585.js:1:25425 / global code@http://ads.rubiconproject.com/ad/9585.js:1:25439", + "timestamp": 11867, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "script[src*='.doubleclick.net']" + ] + }, + "backtrace": "i@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33044 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33731 / g@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:228 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60097 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11873, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "iframe[src*='.doubleclick.net']" + ] + }, + "backtrace": "i@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33044 / o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33731 / g@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:228 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60097 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11873, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 2 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "iframe[src*='://pluzz.francetv.fr']" + ] + }, + "backtrace": "o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33731 / g@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:228 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60097 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11874, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "iframe[src^=\"/\"]" + ] + }, + "backtrace": "o@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:33731 / g@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:228 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60097 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11874, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "link[rel='canonical']" + ] + }, + "backtrace": "dom@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36876 / link_rel@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:9:36933 / g@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:481 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60097 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11874, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "querySelectorAll", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + ".kxtargeted" + ] + }, + "backtrace": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:11:35824 / l@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:26193 / c@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:7:26407 / fire@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86646 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / fireOnce@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:86920 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:28611 / y@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:6:60142 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:18047 / M@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:15990 / n@http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16507 / http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37:5:16970 / nrWrapper@http://pluzz.francetv.fr/:1:23007", + "timestamp": 11877, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12067, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12068, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12068, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12069, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12069, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / sendRequest@http://ads.rubiconproject.com/ad/9585.js:1:8169 / global code@http://pluzz.francetv.fr/:1:71 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 12069, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15:2:109", + "timestamp": 12535, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15:2:1248", + "timestamp": 12536, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15:2:1248", + "timestamp": 12536, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15:2:1248", + "timestamp": 12537, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B:53:31", + "timestamp": 13206, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#video473428253058411334649216441", + "tree": { + "div": { + "div#video473428253058411334649216441": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B:53:31", + "timestamp": 13206, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B:53:31", + "timestamp": 13206, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "div[0]": { + "span#ps-script": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B:53:31", + "timestamp": 13207, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / global code@http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B:53:31", + "timestamp": 13207, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "global code@https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr:79:3", + "timestamp": 14657, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "head" + ] + }, + "backtrace": "global code@https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr:79:3", + "timestamp": 14657, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "head" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "script" + } + ] + }, + "backtrace": "global code@https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr:79:3", + "timestamp": 14658, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "noscript" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "div[0]": { + "span#ps-script": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14659, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe[1]", + "tree": { + "div": { + "iframe[1]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14661, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#comment[0]", + "tree": { + "div": { + "#comment[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14665, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 14665, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15361, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div[1]", + "tree": { + "div": { + "div[1]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[27]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[27]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "div[1]": { + "span#ps-script": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15363, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[27]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[27]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe[0]", + "tree": { + "div": { + "div[1]": { + "iframe[0]": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / http://pluzz.francetv.fr/:1:283 / global code@http://pluzz.francetv.fr/:1:500 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15365, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15368, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15368, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15368, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 15368, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16243, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16244, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16244, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16244, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div[2]", + "tree": { + "div": { + "div[2]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16246, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16246, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[30]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[30]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "div[2]": { + "span#ps-script": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16246, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16246, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[30]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[30]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe[0]", + "tree": { + "div": { + "div[2]": { + "iframe[0]": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / http://pluzz.francetv.fr/:1:283 / global code@http://pluzz.francetv.fr/:1:500 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16247, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16249, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div[3]", + "tree": { + "div": { + "div[3]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[32]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[32]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "div[3]": { + "span#ps-script": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16250, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div[32]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div[32]": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe[0]", + "tree": { + "div": { + "div[3]": { + "iframe[0]": 1 + } + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:11363 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:14962 / http://pluzz.francetv.fr/:1:283 / global code@http://pluzz.francetv.fr/:1:500 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16251, + "loadingStep": "domContentLoadedEnd", + "time": 2 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16253, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16254, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16254, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159/ write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16279, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "span#ps-script", + "tree": { + "div": { + "span#ps-script": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / _insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24244 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16280, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ps-script" + ] + }, + "backtrace": "_handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16280, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "iframe" + ] + }, + "backtrace": "_insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16281, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#ias-194352551" + ] + }, + "backtrace": "_insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16281, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe" + }, + { + "type": "domElement", + "element": "script#ias-194352551", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "script#ias-194352551": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "backtrace": "_insertCursor@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24328 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25004 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16282, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "#text[0]", + "tree": { + "div": { + "#text[0]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16284, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "img[4]", + "tree": { + "div": { + "img[4]": 1 + } + } + } + ] + }, + "backtrace": "_writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22129 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16286, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "jQuery - height", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [] + }, + "backtrace": "handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16286, + "loadingStep": "domContentLoadedEnd", + "time": 1 + }, + "children": [ + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + null + ] + } + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + null + ] + } + } + } + ] + }, + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / a@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18730 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:37085 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16288, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / a@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18730 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:37085 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16288, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / a@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18730 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:37085 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16288, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "div#mea-droite" + } + ] + }, + "backtrace": "init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / a@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18730 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:37085 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16288, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "backtrace": "parseHTML@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:4:16701 / init@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:24314 / n@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:418 / a@http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:18730 / http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js:1:37085 / dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16289, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "jQuery - insertAfter", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + } + ] + }, + "arguments": [ + "#pub-droite" + ] + }, + "backtrace": "dispatch@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:6471 / handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16289, + "loadingStep": "domContentLoadedEnd", + "time": 2 + }, + "children": [ + { + "data": { + "type": "jQuery - find", + "callDetails": { + "arguments": [ + "#pub-droite" + ] + } + }, + "children": [ + { + "data": { + "type": "getElementById", + "callDetails": { + "arguments": [ + "#pub-droite" + ] + } + } + } + ] + }, + { + "data": { + "type": "jQuery - after", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#pub-droite", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "DocumentFragment > div#mea-droite" + ] + } + }, + "children": [ + { + "data": { + "type": "createDocumentFragment", + "callDetails": { + "arguments": [] + } + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragment" + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + } + ] + } + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + } + ] + }, + "arguments": [ + "script" + ] + }, + "resultsNumber": 0 + } + }, + { + "data": { + "type": "insertBefore", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#enDirect", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": 1 + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "fragmentElement", + "element": "div#mea-droite", + "tree": { + "DocumentFragment": { + "div#mea-droite": 1 + } + } + }, + { + "type": "domElement", + "element": "div[2]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div[2]": 1 + } + } + } + } + } + } + ] + } + } + } + ] + } + ] + }, + { + "data": { + "type": "jQuery - css", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#pub-droite", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": 1 + } + } + } + } + } + } + ] + }, + "arguments": [ + "visibility", + "visible" + ] + }, + "backtrace": "handle@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:3246 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:5579 / http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11549 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:3150 / each@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:2:1115 / trigger@http://pluzz.francetv.fr/js/jquery-2.1.4.min.js:3:11522 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:1886 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:15258 / _callFunction@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21838 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21695 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / _writeScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:25022 / _handleScriptToken@http://static.francetv.fr/pom/publicite/publicite.min.js:2:23549 / _writeImpl@http://static.francetv.fr/pom/publicite/publicite.min.js:2:22159 / write@http://static.francetv.fr/pom/publicite/publicite.min.js:2:21714 / _onScriptDone@http://static.francetv.fr/pom/publicite/publicite.min.js:2:24644 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:23578 / http://static.francetv.fr/pom/publicite/publicite.min.js:2:24972 / r@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35153 / onload@http://static.francetv.fr/pom/publicite/publicite.min.js:2:35239", + "timestamp": 16291, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "DOMContentLoaded" + ] + }, + "backtrace": "https://c.algovid.com/player/cedato_player_108.22_d.js:23:4647 / https://c.algovid.com/player/cedato_player_108.22_d.js:23:6441 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:224 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:195 / global code@https://c.algovid.com/player/cedato_player_108.22_d.js:1:199", + "timestamp": 17229, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "load" + ] + }, + "backtrace": "https://c.algovid.com/player/cedato_player_108.22_d.js:23:4640 / https://c.algovid.com/player/cedato_player_108.22_d.js:23:4647 / https://c.algovid.com/player/cedato_player_108.22_d.js:23:6441 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:224 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:195 / global code@https://c.algovid.com/player/cedato_player_108.22_d.js:1:199", + "timestamp": 17229, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createTextNode", + "callDetails": { + "arguments": [ + "" + ] + }, + "backtrace": "https://c.algovid.com/player/cedato_player_108.22_d.js:17:6146 / https://c.algovid.com/player/cedato_player_108.22_d.js:17:6159 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:10:8344 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:2699 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:20:8855 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:244 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:195 / global code@https://c.algovid.com/player/cedato_player_108.22_d.js:1:199", + "timestamp": 17233, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "video" + ] + }, + "backtrace": "https://c.algovid.com/player/cedato_player_108.22_d.js:18:2377 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:2:10254 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:2:29297 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:20:8901 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:244 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:195 / global code@https://c.algovid.com/player/cedato_player_108.22_d.js:1:199", + "timestamp": 17237, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "video" + ] + }, + "backtrace": "a@https://c.algovid.com/player/cedato_player_108.22_d.js:20:9559 / l@https://c.algovid.com/player/cedato_player_108.22_d.js:20:13198 / init@https://c.algovid.com/player/cedato_player_108.22_d.js:20:13275 / d@https://c.algovid.com/player/cedato_player_108.22_d.js:20:13289 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:257 / t@https://c.algovid.com/player/cedato_player_108.22_d.js:1:111 / https://c.algovid.com/player/cedato_player_108.22_d.js:1:195 / global code@https://c.algovid.com/player/cedato_player_108.22_d.js:1:199", + "timestamp": 17242, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "message" + ] + }, + "backtrace": "listen@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:642 / startListening@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:225:145 / start@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:215:225 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:107:528 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18213, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "message" + ] + }, + "backtrace": "listen@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:642 / start@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:126:215 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:108:227 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18216, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "focus" + ] + }, + "backtrace": "g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:203:385 / onHiddenChange@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:204:252 / Fb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:509 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:108:497 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18218, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "blur" + ] + }, + "backtrace": "g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:203:412 / onHiddenChange@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:204:252 / Fb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:509 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:108:497 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18218, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "visibilitychange" + ] + }, + "backtrace": "g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:203:447 / onHiddenChange@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:204:252 / Fb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:509 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:108:497 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18218, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "iframe" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18220, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 5 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "img" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18220, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "a" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18221, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "object" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18221, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "embed" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18221, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 0 + }, + "queryWithoutResults": true, + "warning": true + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "div" + ] + }, + "backtrace": "ta@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:261:329 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:266:456 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18221, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 4 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "click" + ] + }, + "backtrace": "cc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:467 / e@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:140 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:267:163 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18222, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + "mouseover" + ] + }, + "backtrace": "cc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:467 / e@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:140 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:267:163 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18222, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:651 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / e@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:204 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:267:163 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18223, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:651 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / e@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:204 / find@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:267:163 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:342 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18223, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18224, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18225, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18225, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18226, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:289:476 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18226, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "Gc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:362 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:138 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18229, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:138 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18230, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:292:59 / Gc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:292:127 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:138 / Fc@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:290:184 / send@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:288:325 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:109:96 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18230, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "div" + ] + }, + "backtrace": "isApplicable@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:300:372 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:110:325 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18233, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "createElement", + "callDetails": { + "arguments": [ + "iframe" + ] + }, + "backtrace": "y@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:118:432 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:94 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / runAll@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:71 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:28 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18233, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "appendChild", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + } + ] + }, + "arguments": [ + { + "type": "createdElement", + "element": "iframe" + } + ] + }, + "backtrace": "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:94 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / runAll@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:119:71 / Hb@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:28 / initialize@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:306:498 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:107 / global code@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:307:142", + "timestamp": 18234, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18241, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18241, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18242, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18242, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18242, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18242, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18243, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18243, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18243, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324 / ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:236 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18243, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "addEventListener", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "window" + } + ] + }, + "arguments": [ + "beforeunload" + ] + }, + "backtrace": "ga@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:251:338 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:136:11 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / run@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:135:491 / trigger@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:124:619 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:228:111 / b@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:166:68", + "timestamp": 18247, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18347, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18348, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18447, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18448, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18448, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18448, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18547, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18547, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18547, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18548, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18647, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18647, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18647, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18747, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18747, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18747, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18748, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18847, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18847, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18847, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18947, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18947, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18947, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18948, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 18949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19047, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19047, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19048, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19048, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19049, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19147, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19147, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19148, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19149, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19149, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19149, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19247, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19249, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19349, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19350, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19448, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19449, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19449, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19451, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19451, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19451, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19451, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19548, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19648, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19649, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19748, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19749, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19750, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19750, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19849, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19849, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19849, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19850, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19948, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19949, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19950, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 19950, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20048, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20048, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20049, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20148, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20149, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20149, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20248, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20249, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20348, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20349, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20349, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20350, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20448, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20448, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20449, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20449, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20449, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20449, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20450, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20548, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20549, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20550, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20550, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20648, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20649, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20649, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20650, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20748, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20749, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20751, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20751, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20848, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20848, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20849, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20849, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20849, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20850, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20949, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20950, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20950, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20950, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 20950, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21049, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21049, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21050, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21050, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21051, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21051, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21150, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21150, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21151, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21250, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21250, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21251, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21251, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21251, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21251, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21251, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21350, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21350, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21351, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21351, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21450, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21450, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21451, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21451, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21452, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21452, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21453, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21550, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21550, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21550, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21551, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21552, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21650, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21650, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21651, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21750, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21750, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21751, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21751, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21751, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21751, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21752, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21752, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21752, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21752, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21850, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21851, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21852, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21852, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21951, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21951, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21951, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21951, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21951, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21952, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21952, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21952, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21952, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 21952, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22051, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22053, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22053, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22055, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22151, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22151, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22152, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22152, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22152, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22152, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22152, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22153, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22153, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22252, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22252, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22252, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22252, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22252, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22253, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22253, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22253, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22253, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22253, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22352, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22352, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22352, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22352, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22353, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22452, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22453, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22453, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22453, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22453, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22453, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22454, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22553, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22553, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22553, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22554, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22554, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22555, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22653, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22653, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22653, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22655, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22753, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22753, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22754, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22754, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22754, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22754, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22754, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22755, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22755, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22755, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22853, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22853, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22854, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22855, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22953, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22953, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22954, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22955, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 22955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23053, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23053, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23054, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23054, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23055, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23055, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23055, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23154, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657/ g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23154, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23154, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23154, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23254, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23254, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23254, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23254, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23254, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23255, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23353, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23354, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23354, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23354, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23354, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23355, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23454, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23455, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23455, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23455, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23455, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23554, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23554, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23554, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23554, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23554, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23555, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23555, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23654, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23654, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23655, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23755, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23755, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23755, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23756, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23756, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23854, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23854, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23855, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23954, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394/ d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23954, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 23955, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24055, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24055, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24055, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24155, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24156, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24156, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24156, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24157, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24255, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24256, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24257, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24257, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24355, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24356, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24455, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24456, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24456, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24456, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24456, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24457, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24556, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24556, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24556, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24557, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24657, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24657, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24657, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24658, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24757, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24758, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24759, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24759, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24857, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24857, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24857, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24857, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24956, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24956, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24957, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24957, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24957, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24957, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24958, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24958, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24958, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 24958, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25056, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25057, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25057, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25057, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25057, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25057, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25058, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25058, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25058, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25058, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25156, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25156, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25157, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25158, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25158, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25257, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25257, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25257, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25258, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25259, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25259, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25357, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25357, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25358, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25358, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25358, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25358, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25358, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25457, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25457, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25458, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25459, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25459, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25459, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25459, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25557, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25557, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25558, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25657, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25657, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25658, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25659, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25757, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25758, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25759, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25858, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25858, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25859, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25859, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25859, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25859, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25859, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25958, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25958, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25959, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25960, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 25961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26058, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26058, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26058, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26059, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26158, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26158, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26158, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26159, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26159, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26159, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26159, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26159, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26160, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26160, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26258, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26259, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26259, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26259, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26260, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26359, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26359, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26359, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26360, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26459, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26459, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26459, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26460, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26559, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26560, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26560, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26560, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26560, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26560, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26561, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26660, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26660, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26660, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26660, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26661, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26760, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26761, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26859, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26860, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26861, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26960, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26960, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26961, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 26962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27060, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27060, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27061, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27063, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27063, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27063, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27063, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27064, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27160, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27160, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27160, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27161, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27161, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27162, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27260, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27260, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27261, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27360, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27360, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27361, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27460, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27460, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27462, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27462, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27462, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27560, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27560, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27560, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27561, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27561, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27562, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27562, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27660, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27660, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27661, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27662, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27760, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27761, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27762, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27762, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27860, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27861, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27961, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27961, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27962, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 27963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28061, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28061, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28061, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28061, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28062, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28161, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28161, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28161, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 /g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28163, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28261, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28262, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28263, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28263, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28361, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28362, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28362, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28363, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28461, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28462, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28462, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28462, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28462, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28463, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28562, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28562, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28562, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28562, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28662, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28662, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28663, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28762, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28762, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28762, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28862, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28862, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28962, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28962, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 28964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29062, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29063, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29063, + "loadingStep": "domContentLoadedEnd", + "time": 1, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29064, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29064, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29065, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29065, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29065, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29066, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29066, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29162, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29163, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29163, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29164, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29164, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29164, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29164, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29262, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29263, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29263, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29263, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29264, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29363, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29364, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29364, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29365, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29365, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29463, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29463, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29464, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29563, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29564, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29564, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29564, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29564, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29663, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29664, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29664, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29665, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29665, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29665, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29763, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29764, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29764, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29764, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29863, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29863, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29864, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29864, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29864, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29864, + "loadingStep": "domContentLoadedEnd", + "time": 1 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29865, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29865, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29865, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "getClippedDimensions@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:178:56 / calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "calcDims@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:265:115 / A@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:75 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:352 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:253:503 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29963, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29963, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / calcPercentInView@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:188:264 / C@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:143 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:394 / d@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:111:657 / g@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:256:320 / p@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:98 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:258:482 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / getOutOfViewReasons@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:259:52 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:368 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getElementsByTagName", + "callDetails": { + "context": { + "length": 1, + "elements": [ + { + "type": "document" + } + ] + }, + "arguments": [ + "body" + ] + }, + "backtrace": "collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:141:403 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0, + "resultsNumber": 1 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + }, + { + "data": { + "type": "getComputedStyle", + "callDetails": { + "arguments": [ + { + "type": "domElement", + "element": "div#video473428253058411334649216441", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": { + "div#video473428253058411334649216441": 1 + } + } + } + } + } + } + } + } + }, + "" + ] + }, + "backtrace": "isHidden@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:173:356 / D@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:254:254 / http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:257:334 / collect@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:142:398 / ca@http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20:247:324", + "timestamp": 29964, + "loadingStep": "domContentLoadedEnd", + "time": 0 + } + } + ] + }, + "rules": { + "DOMelementsCount": { + "value": 1950, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 4000, + "isBadThreshold": 2500, + "isOkThreshold": 1000, + "message": "

    A high number of DOM elements means a lot of work for the browser to render the page.

    It also slows down JavaScript DOM queries, as there are more elements to search through.

    ", + "label": "DOM elements count", + "tool": "phantomas" + }, + "bad": true, + "abnormal": false, + "score": 37, + "abnormalityScore": 0 + }, + "DOMelementMaxDepth": { + "value": 15, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 28, + "isBadThreshold": 20, + "isOkThreshold": 10, + "message": "

    A deep DOM makes the CSS matching with DOM elements difficult.

    It also slows down JavaScript modifications to the DOM because changing the dimensions of an element makes the browser re-calculate the dimensions of it's parents. Same thing for JavaScript events, that bubble up to the document root.

    ", + "label": "DOM max depth", + "tool": "phantomas" + }, + "offendersObj": { + "count": 155, + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": { + "a.programme-guide.guide-texte": { + "div.video-description": { + "span.sprite-play": 7, + "div.video-heure": 7, + "div.video-titre": 7 + } + }, + "a.programme-guide.guide-vignette": { + "div.video-description": { + "div.video-heure": 2, + "div.video-titre.ellipsis-text": 2, + "span.sprite-play": 2 + } + } + }, + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": { + "div.jspDragTop": 1, + "div.jspDragBottom": 1 + } + } + } + } + } + } + }, + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": { + "a.programme-guide.guide-texte": { + "div.video-description": { + "span.sprite-play": 5, + "div.video-heure": 5, + "div.video-titre": 5 + } + }, + "a.programme-guide.guide-vignette": { + "div.video-description": { + "div.video-heure": 2, + "div.video-titre.ellipsis-text": 2, + "span.sprite-play": 2 + }, + "div.video-description.with-code-csa": { + "div.video-heure": 1, + "div.video-titre.ellipsis-text": 1, + "span.sprite-play": 1 + } + }, + "a.programme-guide.guide-texte.pluzz-box": { + "div.video-description": { + "span.sprite-carte_regions_retroguide": 1, + "div.video-heure": 1, + "div.video-titre": 1 + } + } + }, + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": { + "div.jspDragTop": 1, + "div.jspDragBottom": 1 + } + } + } + } + } + } + }, + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": { + "a.programme-guide.guide-vignette": { + "div.video-description": { + "div.video-heure": 2, + "div.video-titre.ellipsis-text": 2, + "span.sprite-play": 2 + } + }, + "a.programme-guide.guide-texte": { + "div.video-description": { + "span.sprite-play": 10, + "div.video-heure": 10, + "div.video-titre": 10 + } + } + }, + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": { + "div.jspDragTop": 1, + "div.jspDragBottom": 1 + } + } + } + } + } + } + }, + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": { + "a.programme-guide.guide-vignette": { + "div.video-description": { + "div.video-heure": 1, + "div.video-titre.ellipsis-text": 1, + "span.sprite-play": 1 + } + }, + "a.programme-guide.guide-texte": { + "div.video-description": { + "span.sprite-play": 9, + "div.video-heure": 9, + "div.video-titre": 9 + } + } + }, + "div.jspVerticalBar": { + "div.jspTrack": { + "div.jspDrag": { + "div.jspDragTop": 1, + "div.jspDragBottom": 1 + } + } + } + } + } + } + }, + "li[4]": { + "div.retro-chaine.franceo": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": { + "div.jspPane": { + "a.programme-guide.guide-texte": { + "div.video-description": { + "span.sprite-play": 8, + "div.video-heure": 8, + "div.video-titre": 8 + } + }, + "a.programme-guide.guide-vignette": { + "div.video-description": { + "div.video-heure": 1, + "div.video-titre.ellipsis-text": 1, + "span.sprite-play": 1 + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "bad": true, + "abnormal": false, + "score": 50, + "abnormalityScore": 0 + }, + "iframesCount": { + "value": 9, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 30, + "isBadThreshold": 15, + "isOkThreshold": 2, + "message": "

    iFrames are the most complex HTML elements. They are pages, just like the main page, and the browser needs to create a new page context, which has a cost.

    ", + "label": "Number of iframes", + "tool": "phantomas" + }, + "bad": true, + "abnormal": false, + "score": 46, + "abnormalityScore": 0 + }, + "DOMidDuplicated": { + "value": 3, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 50, + "isBadThreshold": 5, + "isOkThreshold": 0, + "message": "

    IDs of HTML elements must be document-wide unique. This can cause problems with getElementById returning the wrong element.

    ", + "label": "IDs duplicated", + "tool": "phantomas" + }, + "offendersObj": { + "count": 3, + "list": [ + { + "id": "guide-tranche-1", + "occurrences": 8 + }, + { + "id": "guide-tranche-2", + "occurrences": 8 + }, + { + "id": "guide-tranche-3", + "occurrences": 8 + } + ] + }, + "bad": true, + "abnormal": false, + "score": 40, + "abnormalityScore": 0 + }, + "DOMaccesses": { + "value": 3479, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 3000, + "isBadThreshold": 1500, + "isOkThreshold": 50, + "message": "

    This metric counts the number of calls to DOM related functions (both native DOM functions and jQuery functions) on page load.

    The more your JavaScript code accesses the DOM, the slower the page will load.

    Try, as much as possible, to have an HTML page fully generated by the server instead of making changes with JS.

    Try to reduce the number of queries by refactoring your JavaScript code.

    Binding too many events also has a cost. Try to use event delegation as much as possible.

    ", + "label": "DOM access", + "tool": "jsExecutionTransformer" + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": -16 + }, + "queriesWithoutResults": { + "value": 106, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 200, + "isBadThreshold": 100, + "isOkThreshold": 0, + "message": "

    Number of queries that return no result. Both native and jQuery DOM requests are counted.

    It suggests the query is not used on the page, probably because it is some dead code.

    Or maybe the code is trying to find an HTML block that is not always here. Look at the JS Timeline to see if the scripts correctly figures out the HTML block is not here and immediatly stops interacting further with the DOM.

    ", + "label": "Queries without result", + "tool": "jsExecutionTransformer" + }, + "bad": true, + "abnormal": false, + "score": 0, + "abnormalityScore": 0 + }, + "DOMqueriesAvoidable": { + "value": 373, + "policy": { + "takeOffendersFrom": "DOMqueriesDuplicated", + "hasOffenders": true, + "isAbnormalThreshold": 500, + "isBadThreshold": 200, + "isOkThreshold": 0, + "message": "

    This is the number of queries that could be avoided by removing all duplicated queries.

    Simply save the result of a query in a variable. Ok it is not always simple, especially with third-party scripts, but at least do it with your own code.

    ", + "label": "Duplicated DOM queries", + "tool": "phantomas" + }, + "offendersObj": { + "count": 28, + "list": [ + { + "query": "b", + "context": { + "type": "document" + }, + "fn": "getElementsByTagName ", + "count": 243 + }, + { + "query": "#p", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 49 + }, + { + "query": "s", + "context": { + "type": "document" + }, + "fn": "getElementsByTagName ", + "count": 19 + }, + { + "query": "*", + "context": { + "type": "document" + }, + "fn": "getElementsByTagName ", + "count": 13 + }, + { + "query": "m", + "context": { + "type": "document" + }, + "fn": "querySelectorAll ", + "count": 9 + }, + { + "query": "#f", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 5 + }, + { + "query": "#a", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 5 + }, + { + "query": "#r", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 5 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.vad-top-titre", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": 1 + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 5 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div[0]", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enVad": { + "div.bloc-gauche": { + "div.vad-top-video": { + "a.vad-top": { + "div.vad-top-description": { + "div.vad-top-titre": { + "div[0]": 1 + } + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 5 + }, + { + "query": "#n", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 4 + }, + { + "query": "#g", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 3 + }, + { + "query": "#m", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 3 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + }, + "fn": "getElementsByTagName ", + "count": 3 + }, + { + "query": "#", + "context": { + "type": "document" + }, + "fn": "querySelectorAll ", + "count": 3 + }, + { + "query": "i", + "context": { + "type": "document" + }, + "fn": "querySelectorAll ", + "count": 3 + }, + { + "query": "#h", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 2 + }, + { + "query": "#l", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div#menu", + "tree": { + "body": { + "div#menu": 1 + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[0]": { + "div.retro-chaine.france2": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[1]": { + "div.retro-chaine.france3": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[2]": { + "div.retro-chaine.france4": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "div.jspContainer", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#guideReplay": { + "div#guide-container": { + "div#guide-jour-1": { + "div#guide-tranche-3": { + "ul.retroGuide": { + "li[3]": { + "div.retro-chaine.france5": { + "div.retro-chaine-inner.jspScrollable": { + "div.jspContainer": 1 + } + } + } + } + } + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "*", + "context": { + "type": "domElement", + "element": "ul#ui-id-1", + "tree": { + "body": { + "ul#ui-id-1": 1 + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": "#k", + "context": { + "type": "document" + }, + "fn": "getElementById ", + "count": 2 + }, + { + "query": "d", + "context": { + "type": "domElement", + "element": "div.metanav", + "tree": { + "body": { + "div.metanav": 1 + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + }, + { + "query": ".", + "context": { + "type": "document" + }, + "fn": "querySelectorAll ", + "count": 2 + }, + { + "query": "i", + "context": { + "type": "domElement", + "element": "div.adCtnt", + "tree": { + "body": { + "section#page": { + "div.alternate-color": { + "div#enDirect": { + "div#pub-droite": { + "div#eShowPubMiddle": { + "div.adCtnt": 1 + } + } + } + } + } + } + } + }, + "fn": "getElementsByTagName ", + "count": 2 + } + ] + }, + "bad": true, + "abnormal": false, + "score": 0, + "abnormalityScore": 0 + }, + "eventsScrollBound": { + "value": 1, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 15, + "isBadThreshold": 7, + "isOkThreshold": 1, + "message": "

    Number of 'scroll' event listeners binded to 'window' or 'document'.

    Asking too much work to the browser on scroll hurts the smoothness of the scroll. Merging all your event listeners into an unique listener can help you factorize their code and reduce their footprint on scroll.

    ", + "label": "Scroll events bound", + "tool": "phantomas" + }, + "offendersObj": { + "count": 1, + "list": [ + { + "backtrace": [ + { + "file": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "line": 3, + "column": 60453, + "functionName": "f" + }, + { + "file": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "line": 3, + "column": 29885, + "functionName": "c" + }, + { + "file": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "line": 3, + "column": 94038, + "functionName": "e" + }, + { + "file": "http://pluzz.francetv.fr/", + "line": 43, + "column": 562, + "functionName": "onload" + } + ], + "target": "window" + } + ] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "DOMaccessesOnScroll": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 35, + "isBadThreshold": 20, + "isOkThreshold": 1, + "message": "

    This rule counts the number of DOM-accessing functions calls on a scroll event, such as queries, readings, writings, bindings and jQuery functions.

    Two scroll events are triggered quickly, one after the other, and only the second one is analyzed so throttled functions are ignored.

    One of the main reasons of a poor scrolling experience is when too much JS is executed on each scroll event. Note that some devices such as smartphones and MacBooks send more scroll events than others.

    Reduce the number of DOM accesses inside scroll listeners. Put DOM queries outside them when possible. Use throttling or debouncing.

    ", + "label": "DOM access on scroll", + "tool": "jsExecutionTransformer" + }, + "offendersObj": { + "data": { + "type": "main" + }, + "children": [ + { + "data": { + "type": "documentScroll", + "timestamp": 30933, + "loadingStep": "domContentLoadedEnd" + }, + "windowPerformance": true + }, + { + "data": { + "type": "windowScroll", + "timestamp": 30933, + "loadingStep": "domContentLoadedEnd" + }, + "windowPerformance": true + } + ] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "jsErrors": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 4, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    Just to let you know there are some errors on the page.

    Please note that some errors only occur in the PhantomJS browser, so you might need to double check on other browsers.

    ", + "label": "JavaScript errors", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "documentWriteCalls": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 10, + "isBadThreshold": 5, + "isOkThreshold": 0, + "message": "

    They slow down the page construction, especially if they are used to insert scripts in the page. Remove them ASAP.

    If you cannot remove them because they come from a third-party script (such as ads), have a look at PostScribe.

    ", + "label": "document.write calls", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "synchronousXHR": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 1, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    Making an XMLHttpRequest with the async option set to false is deprecated due to the negative effect to performances. The browser's main thread needs to stop everything until the response is received.

    ", + "label": "Synchronous Ajax requests", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "consoleMessages": { + "value": 2, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 50, + "isBadThreshold": 10, + "isOkThreshold": 0, + "message": "

    Try to keep your console clean when in production. Debugging is good for development only.

    Writing in the console has a cost, especially when dumping large object variables.

    There is also a problem with Internet Explorer 8, not knowing the console object.

    ", + "label": "Console messages", + "tool": "phantomas" + }, + "bad": true, + "abnormal": false, + "score": 80, + "abnormalityScore": 0 + }, + "globalVariables": { + "value": 148, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 700, + "isBadThreshold": 200, + "isOkThreshold": 40, + "message": "

    It is a bad practice because they clutter up the global namespace. If two scripts use the same variable name in the global scope, it can cause conflicts and it is generally hard to debug.

    Global variables also take a (very) little bit longer to be accessed than variables in the local scope of a function.

    ", + "label": "Global variables", + "tool": "phantomas" + }, + "offendersObj": { + "count": 148, + "list": [ + "$", + "$zoneAbroad", + "AT_click", + "AT_hit", + "AudienceScience", + "CEDATO_API", + "CEDATO_FLASHBRIDGE11501", + "CEDATO_TAG", + "CHROMECAST_APPS_ID", + "CHROMECAST_APP_ID", + "CLIENT", + "ChromeCastReceiver", + "EventEmitter", + "FlashObject", + "Handlebars", + "IMAGES_BASE_URL", + "Krux", + "NREUM", + "OAS_AD", + "OAS_RICH", + "OAS_listpos", + "OAS_sitepage", + "PlayerSnapshot", + "Pluzz", + "PluzzCast", + "PluzzDiffusionsStorage", + "Promise", + "RSVP", + "RecommandationsHome", + "RubiconAdServing", + "SERVER", + "SWFObject", + "XMLHttpRequest", + "Xt_id", + "Xtconf", + "Xtcore", + "__IASVANS", + "__nr_require", + "a", + "asiAdserver", + "asiPlacements", + "asiPqTag", + "attag", + "autoCompletePluzz", + "axel", + "callWs", + "checkIt", + "customRecommandations", + "data", + "deconcept", + "define", + "detect", + "error", + "form_newsletter_url", + "ftv_metanav", + "ftvenShortTitle", + "ftvi_portail", + "ftvi_rubrique", + "ftvi_section", + "ga", + "gaData", + "gaGlobal", + "gaplugins", + "getQueryParamValue", + "getTickerTranche", + "iframe", + "inViewport", + "injectScript", + "jQuery", + "lSc", + "lancerRecherche", + "lazyLoadLight", + "lazyload", + "lzld", + "miseEnAvant", + "naturalImageOnLoad", + "naturalImages", + "newrelic", + "o_", + "pluzzBox", + "pluzzMenu", + "ref", + "require", + "resizeImage", + "rgb2hex", + "rp_account_config", + "rp_onUserIdLoaded_369300_10", + "rp_onUserIdLoaded_57136_15", + "rp_onUserIdLoaded_64921_15", + "rp_onUserIdLoaded_82932_10", + "rp_requests", + "rp_smartfile", + "rpx_params", + "rubicon_ad", + "rubicon_cb", + "rubicon_creative", + "rubicon_rurl", + "rubicon_tag_code", + "sandblaster", + "tl_sync", + "tldc", + "wck", + "x", + "xd", + "xt1", + "xt16", + "xt21", + "xt29", + "xt44", + "xt7", + "xt8", + "xt8b", + "xt9", + "xtLogDom", + "xt_ParseUrl", + "xt_ParseUrl3", + "xt_ac", + "xt_ad", + "xt_adc", + "xt_addProduct", + "xt_addProduct_load", + "xt_addProduct_v2", + "xt_addchain", + "xt_adi", + "xt_an", + "xt_click", + "xt_form", + "xt_med", + "xt_multc", + "xt_mvt", + "xt_rd", + "xt_rm", + "xtdi", + "xtf1", + "xtf3", + "xtfirst", + "xtidpg", + "xtn2", + "xtnv", + "xtp", + "xtpage", + "xtparam", + "xtsd", + "xtsite", + "xttredir", + "xtv", + "xtvid", + "xw" + ] + }, + "bad": true, + "abnormal": false, + "score": 33, + "abnormalityScore": 0 + }, + "jQueryVersionsLoaded": { + "value": 2, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 2, + "isBadThreshold": 2, + "isOkThreshold": 1, + "message": "

    jQuery is a heavy library. You should never load jQuery more than once on the same page.

    ", + "label": "Several jQuery loaded", + "tool": "phantomas" + }, + "offendersObj": { + "count": 2, + "list": [ + "v2.1.4", + "v1.8.3+1" + ] + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": 0 + }, + "jQueryCallsOnEmptyObject": { + "value": 35, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 180, + "isBadThreshold": 100, + "isOkThreshold": 1, + "message": "

    This metric counts the number of jQuery functions called on an empty jQuery object. The call was useless.

    This can be helpful to detect dead or unused code.

    ", + "label": "Calls on empty objects", + "tool": "jsExecutionTransformer" + }, + "bad": true, + "abnormal": false, + "score": 66, + "abnormalityScore": 0 + }, + "jQueryNotDelegatedEvents": { + "value": 30, + "policy": { + "hasOffenders": false, + "isAbnormalThreshold": 180, + "isBadThreshold": 100, + "isOkThreshold": 1, + "message": "

    This is the number of events that are bound with the .bind() or the .on() function without using event delegation.

    This means jQuery binds each element contained in the object one by one. This is bad for performance.

    ", + "label": "Events not delegated", + "tool": "jsExecutionTransformer" + }, + "bad": true, + "abnormal": false, + "score": 71, + "abnormalityScore": 0 + }, + "cssParsingErrors": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 20, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    Yellow Lab Tools failed to parse a CSS file. I doubt the problem comes from the css parser.

    Maybe a CSS validator can help you.

    ", + "label": "CSS syntax error", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssRules": { + "value": 1379, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 4500, + "isBadThreshold": 3000, + "isOkThreshold": 750, + "message": "

    Having a huge number of CSS rules hurts performances. If the number of CSS rules is higher than the number of DOM elements, there is clearly a problem.

    Huge stylesheets generally occur when the different pages of a website load all the CSS, concatenated in a single stylesheet, even if a large part of the rules are page-specific. Solution is to create one main CSS file with global rules and one custom file per page.

    ", + "label": "Rules count", + "tool": "phantomas" + }, + "offendersObj": { + "count": 5, + "list": [ + { + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "rules": 1064 + }, + { + "file": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "rules": 17 + }, + { + "file": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "rules": 86 + }, + { + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "rules": 106 + }, + { + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "rules": 106 + } + ] + }, + "bad": true, + "abnormal": false, + "score": 72, + "abnormalityScore": 0 + }, + "cssComplexSelectors": { + "value": 107, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 2000, + "isBadThreshold": 600, + "isOkThreshold": 0, + "message": "

    Complex selectors are CSS selectors with 4 or more expressions, like \"#header ul li .foo\".

    They are adding more work for the browser, and this could be avoided by simplifying selectors. The B.E.M. methodology is an useful way to simplify your CSS.

    ", + "label": "Complex selectors", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "count": 23, + "offenders": [ + { + "css": "#old-browser-popin .browsers>.browser>.logo", + "line": 4, + "column": 25577 + }, + { + "css": "#old-browser-popin .browsers>.browser>a", + "line": 4, + "column": 25679 + }, + { + "css": "#old-browser-popin .browsers>.browser>a:hover", + "line": 4, + "column": 25799 + }, + { + "css": "#old-browser-popin .browsers>.browser>.chrome", + "line": 4, + "column": 25871 + }, + { + "css": "#old-browser-popin .browsers>.browser>.firefox", + "line": 4, + "column": 25999 + }, + { + "css": "#old-browser-popin .browsers>.browser>.msie", + "line": 4, + "column": 26129 + }, + { + "css": "#old-browser-popin .browsers>.browser>.opera", + "line": 4, + "column": 26253 + }, + { + "css": "#old-browser-popin .browsers>.browser>.safari", + "line": 4, + "column": 26379 + }, + { + "css": ".retroGuide .guide-vignette:hover .video-description .video-heure", + "line": 4, + "column": 38143 + }, + { + "css": ".retroGuide .guide-vignette:hover .video-description .video-titre", + "line": 4, + "column": 38143 + }, + { + "css": ".retroGuide .guide-vignette:hover .video-description .ellipsis-text", + "line": 4, + "column": 38286 + }, + { + "css": ".bloc-voir-aussi-franceinfo .voiraussi-element .voiraussi-infos .title", + "line": 4, + "column": 42105 + }, + { + "css": "#diffusion-info .diffusion-paragraphe>span>span", + "line": 4, + "column": 44318 + }, + { + "css": ".aide-menu .liste>li>a.selected", + "line": 4, + "column": 58851 + }, + { + "css": ".aide-menu .liste>li>a:hover", + "line": 4, + "column": 58851 + }, + { + "css": ".aide-menu .liste>li>a", + "line": 4, + "column": 59005 + }, + { + "css": ".bloc-color .box-collapse>li>div.box-title", + "line": 4, + "column": 60216 + }, + { + "css": ".bloc-color .box-collapse>li>div.box-title:before", + "line": 4, + "column": 60317 + }, + { + "css": ".bloc-color .box-collapse>li li", + "line": 4, + "column": 61011 + }, + { + "css": ".annexe-plus-regardes a:hover .vignette-plusregardes .vignette-filtre", + "line": 4, + "column": 62865 + }, + { + "css": ".annexe-plus-regardes a:hover .vignette-plusregardes .sprite-play.vignette-play", + "line": 4, + "column": 62948 + }, + { + "css": "#accessibilite-inner .keyboard>div span", + "line": 4, + "column": 66261 + }, + { + "css": "#accessibilite-inner .keyboard>div span:last-of-type", + "line": 4, + "column": 66415 + } + ] + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "count": 2, + "offenders": [ + { + "css": "#footer-transverse #ft-top-link li.ft-applications a", + "line": 1, + "column": 5580 + }, + { + "css": "#footer-transverse #ft-top-link li#ft-applications a", + "line": 1, + "column": 5664 + } + ] + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "count": 82, + "offenders": [ + { + "css": ".metanav .chaines li a", + "line": 1, + "column": 1973 + }, + { + "css": ".metanav .chaines li.la1ere a", + "line": 1, + "column": 2085 + }, + { + "css": ".metanav .chaines li.france2 a", + "line": 1, + "column": 2147 + }, + { + "css": ".metanav .chaines li.france3 a", + "line": 1, + "column": 2211 + }, + { + "css": ".metanav .chaines li.france4 a", + "line": 1, + "column": 2275 + }, + { + "css": ".metanav .chaines li.france5 a", + "line": 1, + "column": 2339 + }, + { + "css": ".metanav .chaines li.franceo a", + "line": 1, + "column": 2403 + }, + { + "css": ".metanav .chaines li.current a", + "line": 1, + "column": 2468 + }, + { + "css": ".metanav .chaines li a:hover", + "line": 1, + "column": 2468 + }, + { + "css": ".metanav .chaines li.la1ere.current a", + "line": 1, + "column": 2586 + }, + { + "css": ".metanav .chaines li.la1ere a:hover", + "line": 1, + "column": 2586 + }, + { + "css": ".metanav .chaines li.france2.current a", + "line": 1, + "column": 2692 + }, + { + "css": ".metanav .chaines li.france2 a:hover", + "line": 1, + "column": 2692 + }, + { + "css": ".metanav .chaines li.france3.current a", + "line": 1, + "column": 2801 + }, + { + "css": ".metanav .chaines li.france3 a:hover", + "line": 1, + "column": 2801 + }, + { + "css": ".metanav .chaines li.france4.current a", + "line": 1, + "column": 2910 + }, + { + "css": ".metanav .chaines li.france4 a:hover", + "line": 1, + "column": 2910 + }, + { + "css": ".metanav .chaines li.france5.current a", + "line": 1, + "column": 3019 + }, + { + "css": ".metanav .chaines li.france5 a:hover", + "line": 1, + "column": 3019 + }, + { + "css": ".metanav .chaines li.franceo.current a", + "line": 1, + "column": 3128 + }, + { + "css": ".metanav .chaines li.franceo a:hover", + "line": 1, + "column": 3128 + }, + { + "css": ".metanav .pluzz .content li", + "line": 1, + "column": 4032 + }, + { + "css": ".metanav .info .content li", + "line": 1, + "column": 4032 + }, + { + "css": ".metanav .pluzz .content li:hover", + "line": 1, + "column": 4098 + }, + { + "css": ".metanav .info .content li:hover", + "line": 1, + "column": 4098 + }, + { + "css": ".metanav .pluzz .content a", + "line": 1, + "column": 4188 + }, + { + "css": ".metanav .pluzz .content a:hover", + "line": 1, + "column": 4326 + }, + { + "css": ".metanav .info .content a:hover", + "line": 1, + "column": 4326 + }, + { + "css": ".metanav .transverse li.pluzz a:hover", + "line": 1, + "column": 4419 + }, + { + "css": ".metanav .info .content a", + "line": 1, + "column": 5085 + }, + { + "css": ".metanav .transverse li.sport a", + "line": 1, + "column": 5222 + }, + { + "css": ".metanav .transverse li.sport.current a", + "line": 1, + "column": 5348 + }, + { + "css": ".metanav .transverse li.sport a:hover", + "line": 1, + "column": 5348 + }, + { + "css": ".metanav .content #KitSso_loginLink a", + "line": 1, + "column": 7124 + }, + { + "css": ".metanav ul.sso_link_list li:hover a", + "line": 1, + "column": 7627 + }, + { + "css": ".metanav .newsletter a span", + "line": 1, + "column": 8285 + }, + { + "css": ".metanav .newsletter a:hover span", + "line": 1, + "column": 8354 + }, + { + "css": ".metanav .confidentialite.newsletter_link.sso_connect a:hover span", + "line": 1, + "column": 9302 + }, + { + "css": ".metanav .confidentialite.newsletter_link.sso_disconnect a:hover span", + "line": 1, + "column": 9302 + }, + { + "css": ".metanav .confidentialite a span", + "line": 1, + "column": 9450 + }, + { + "css": ".metanav .confidentialite a:hover span", + "line": 1, + "column": 9509 + }, + { + "css": ".metanav .chaines li a", + "line": 1, + "column": 1973 + }, + { + "css": ".metanav .chaines li.la1ere a", + "line": 1, + "column": 2085 + }, + { + "css": ".metanav .chaines li.france2 a", + "line": 1, + "column": 2147 + }, + { + "css": ".metanav .chaines li.france3 a", + "line": 1, + "column": 2211 + }, + { + "css": ".metanav .chaines li.france4 a", + "line": 1, + "column": 2275 + }, + { + "css": ".metanav .chaines li.france5 a", + "line": 1, + "column": 2339 + }, + { + "css": ".metanav .chaines li.franceo a", + "line": 1, + "column": 2403 + }, + { + "css": ".metanav .chaines li.current a", + "line": 1, + "column": 2468 + }, + { + "css": ".metanav .chaines li a:hover", + "line": 1, + "column": 2468 + }, + { + "css": ".metanav .chaines li.la1ere.current a", + "line": 1, + "column": 2586 + }, + { + "css": ".metanav .chaines li.la1ere a:hover", + "line": 1, + "column": 2586 + }, + { + "css": ".metanav .chaines li.france2.current a", + "line": 1, + "column": 2692 + }, + { + "css": ".metanav .chaines li.france2 a:hover", + "line": 1, + "column": 2692 + }, + { + "css": ".metanav .chaines li.france3.current a", + "line": 1, + "column": 2801 + }, + { + "css": ".metanav .chaines li.france3 a:hover", + "line": 1, + "column": 2801 + }, + { + "css": ".metanav .chaines li.france4.current a", + "line": 1, + "column": 2910 + }, + { + "css": ".metanav .chaines li.france4 a:hover", + "line": 1, + "column": 2910 + }, + { + "css": ".metanav .chaines li.france5.current a", + "line": 1, + "column": 3019 + }, + { + "css": ".metanav .chaines li.france5 a:hover", + "line": 1, + "column": 3019 + }, + { + "css": ".metanav .chaines li.franceo.current a", + "line": 1, + "column": 3128 + }, + { + "css": ".metanav .chaines li.franceo a:hover", + "line": 1, + "column": 3128 + }, + { + "css": ".metanav .pluzz .content li", + "line": 1, + "column": 4032 + }, + { + "css": ".metanav .info .content li", + "line": 1, + "column": 4032 + }, + { + "css": ".metanav .pluzz .content li:hover", + "line": 1, + "column": 4098 + }, + { + "css": ".metanav .info .content li:hover", + "line": 1, + "column": 4098 + }, + { + "css": ".metanav .pluzz .content a", + "line": 1, + "column": 4188 + }, + { + "css": ".metanav .pluzz .content a:hover", + "line": 1, + "column": 4326 + }, + { + "css": ".metanav .info .content a:hover", + "line": 1, + "column": 4326 + }, + { + "css": ".metanav .transverse li.pluzz a:hover", + "line": 1, + "column": 4419 + }, + { + "css": ".metanav .info .content a", + "line": 1, + "column": 5085 + }, + { + "css": ".metanav .transverse li.sport a", + "line": 1, + "column": 5222 + }, + { + "css": ".metanav .transverse li.sport.current a", + "line": 1, + "column": 5348 + }, + { + "css": ".metanav .transverse li.sport a:hover", + "line": 1, + "column": 5348 + }, + { + "css": ".metanav .content #KitSso_loginLink a", + "line": 1, + "column": 7124 + }, + { + "css": ".metanav ul.sso_link_list li:hover a", + "line": 1, + "column": 7627 + }, + { + "css": ".metanav .newsletter a span", + "line": 1, + "column": 8285 + }, + { + "css": ".metanav .newsletter a:hover span", + "line": 1, + "column": 8354 + }, + { + "css": ".metanav .confidentialite.newsletter_link.sso_connect a:hover span", + "line": 1, + "column": 9302 + }, + { + "css": ".metanav .confidentialite.newsletter_link.sso_disconnect a:hover span", + "line": 1, + "column": 9302 + }, + { + "css": ".metanav .confidentialite a span", + "line": 1, + "column": 9450 + }, + { + "css": ".metanav .confidentialite a:hover span", + "line": 1, + "column": 9509 + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 82, + "abnormalityScore": 0 + }, + "cssColors": { + "value": 73, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 400, + "isBadThreshold": 150, + "isOkThreshold": 30, + "message": "

    This is the number of different colors defined in CSS.

    Your CSS will be easier to maintain if you keep a small color set.

    ", + "label": "Colors count", + "tool": "phantomas" + }, + "offendersObj": { + "count": 73, + "palette": [ + { + "color": "#ffffff", + "occurrences": 108 + }, + { + "color": "#000000", + "occurrences": 64 + }, + { + "color": "#262626", + "occurrences": 37 + }, + { + "color": "#7a7a7a", + "occurrences": 29 + }, + { + "color": "#c4c4c4", + "occurrences": 19 + }, + { + "color": "#333333", + "occurrences": 17 + }, + { + "color": "#323131", + "occurrences": 16 + }, + { + "color": "#515151", + "occurrences": 15 + }, + { + "color": "#0076b9", + "occurrences": 14 + }, + { + "color": "#eaeaea", + "occurrences": 12 + }, + { + "color": "#1d1d1d", + "occurrences": 11 + }, + { + "color": "#404040", + "occurrences": 10 + }, + { + "color": "#636363", + "occurrences": 9 + }, + { + "color": "#111111", + "occurrences": 8 + }, + { + "color": "#555555", + "occurrences": 8 + }, + { + "color": "#d9d9d9", + "occurrences": 8 + }, + { + "color": "rgba(0,0,0,0.2)", + "occurrences": 8 + }, + { + "color": "#f87c00", + "occurrences": 7 + }, + { + "color": "#97488a", + "occurrences": 7 + }, + { + "color": "#f5c22f", + "occurrences": 7 + }, + { + "color": "#e80000", + "occurrences": 7 + }, + { + "color": "#87c000", + "occurrences": 7 + }, + { + "color": "rgba(50,49,49,0.54)", + "occurrences": 6 + }, + { + "color": "rgba(50,49,49,0.81)", + "occurrences": 6 + }, + { + "color": "rgba(50,49,49,0.25)", + "occurrences": 6 + }, + { + "color": "rgba(50,49,49,0.13)", + "occurrences": 6 + }, + { + "color": "#cccccc", + "occurrences": 6 + }, + { + "color": "#cfcfcf", + "occurrences": 3 + }, + { + "color": "rgba(0,0,0,0.3)", + "occurrences": 3 + }, + { + "color": "rgba(50,49,49,0.91)", + "occurrences": 3 + }, + { + "color": "#e5eb7c", + "occurrences": 3 + }, + { + "color": "rgba(50,49,49,0)", + "occurrences": 3 + }, + { + "color": "rgba(50,49,49,0.03)", + "occurrences": 3 + }, + { + "color": "rgba(50,49,49,0.94)", + "occurrences": 3 + }, + { + "color": "rgba(50,49,49,0.96)", + "occurrences": 3 + }, + { + "color": "#a0a0a0", + "occurrences": 3 + }, + { + "color": "#434343", + "occurrences": 2 + }, + { + "color": "rgba(0,0,0,0.5)", + "occurrences": 2 + }, + { + "color": "#2a2a2a", + "occurrences": 2 + }, + { + "color": "rgba(255,255,255,0.7)", + "occurrences": 2 + }, + { + "color": "rgba(0,0,0,0.7)", + "occurrences": 2 + }, + { + "color": "#fbbebd", + "occurrences": 2 + }, + { + "color": "#f76b68", + "occurrences": 2 + }, + { + "color": "#f7f7f7", + "occurrences": 2 + }, + { + "color": "#888888", + "occurrences": 2 + }, + { + "color": "#3a3a3a", + "occurrences": 2 + }, + { + "color": "rgba(0,0,0,0.8)", + "occurrences": 2 + }, + { + "color": "#acacac", + "occurrences": 2 + }, + { + "color": "#454646", + "occurrences": 2 + }, + { + "color": "#c7111d", + "occurrences": 2 + }, + { + "color": "rgba(255,255,255,0.3)", + "occurrences": 1 + }, + { + "color": "#bbbbdd", + "occurrences": 1 + }, + { + "color": "rgba(255,255,255,0.32)", + "occurrences": 1 + }, + { + "color": "#ffc300", + "occurrences": 1 + }, + { + "color": "#213231", + "occurrences": 1 + }, + { + "color": "rgba(255,255,255,0.16)", + "occurrences": 1 + }, + { + "color": "#6d6d68", + "occurrences": 1 + }, + { + "color": "#999999", + "occurrences": 1 + }, + { + "color": "#7b7b7b", + "occurrences": 1 + }, + { + "color": "#666666", + "occurrences": 1 + }, + { + "color": "#e6e6e6", + "occurrences": 1 + }, + { + "color": "rgba(85,85,85,0.7)", + "occurrences": 1 + }, + { + "color": "#bbbbbb", + "occurrences": 1 + }, + { + "color": "#555454", + "occurrences": 1 + }, + { + "color": "#eeeef4", + "occurrences": 1 + }, + { + "color": "rgba(0,0,0,0.15)", + "occurrences": 1 + }, + { + "color": "#454545", + "occurrences": 1 + }, + { + "color": "#cecdcd", + "occurrences": 1 + }, + { + "color": "#50506d", + "occurrences": 1 + }, + { + "color": "#003231", + "occurrences": 1 + }, + { + "color": "#80808d", + "occurrences": 1 + }, + { + "color": "#ddddee", + "occurrences": 1 + }, + { + "color": "#898989", + "occurrences": 1 + } + ] + }, + "bad": true, + "abnormal": false, + "score": 64, + "abnormalityScore": 0 + }, + "similarColors": { + "value": 10, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 80, + "isBadThreshold": 40, + "isOkThreshold": 0, + "message": "

    This is the list of colors found in the stylesheets, that are very close to each other. The eye can barely see the difference.

    Use this list to reduce the number of colors in your palette, it will be easier to maintain.

    ", + "label": "Similar colors", + "tool": "colorDiff" + }, + "offendersObj": { + "count": 10, + "list": [ + { + "color1": "#7a7a7a", + "color2": "#7b7b7b", + "isDark": true + }, + { + "color1": "#323131", + "color2": "#333333", + "isDark": true + }, + { + "color1": "#eaeaea", + "color2": "#e6e6e6", + "isDark": false + }, + { + "color1": "#cccccc", + "color2": "#cfcfcf", + "isDark": false + }, + { + "color1": "#cccccc", + "color2": "#cecdcd", + "isDark": false + }, + { + "color1": "#cfcfcf", + "color2": "#cecdcd", + "isDark": false + }, + { + "color1": "#898989", + "color2": "#888888", + "isDark": true + }, + { + "color1": "#555454", + "color2": "#555555", + "isDark": true + }, + { + "color1": "#454646", + "color2": "#454545", + "isDark": true + }, + { + "color1": "#454545", + "color2": "#434343", + "isDark": true + } + ] + }, + "bad": true, + "abnormal": false, + "score": 75, + "abnormalityScore": 0 + }, + "cssBreakpoints": { + "value": 3, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 60, + "isBadThreshold": 40, + "isOkThreshold": 6, + "message": "

    This is the number of different breakpoints found in the stylesheets' media queries.

    Please note this rule is based on min-width, max-width, min-device-width and max-device-width media queries only.

    Your CSS will be easier to maintain if you keep a reasonable number of breakpoints. Try to make a fluid design - using percents - to avoid the creation of numerous breakpoints.

    ", + "label": "Breakpoints count", + "tool": "mediaQueriesChecker" + }, + "offendersObj": [ + { + "breakpoint": "860px", + "count": 1, + "pixels": 860 + }, + { + "breakpoint": "1024px", + "count": 1, + "pixels": 1024 + }, + { + "breakpoint": "980px", + "count": 2, + "pixels": 980 + } + ], + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssMobileFirst": { + "value": 5, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 1000, + "isBadThreshold": 200, + "isOkThreshold": 25, + "message": "

    This is the number of CSS rules inside media queries that address small screens.

    The common good practice, when creating a responsive website, is to write it \"mobile-first\". More explanation in this great article.

    ", + "label": "Not mobile-first media queries", + "tool": "mediaQueriesChecker" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "count": 2, + "offenders": [ + { + "query": "screen and (max-width:860px)", + "rules": 2, + "line": 1, + "column": 3443 + }, + { + "query": "only screen and (max-width:1024px)", + "rules": 1, + "line": 4, + "column": 6505 + } + ] + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "count": 2, + "offenders": [ + { + "query": "screen and (max-width:980px)", + "rules": 1, + "line": 1, + "column": 506 + }, + { + "query": "screen and (max-width:980px)", + "rules": 1, + "line": 1, + "column": 506 + } + ] + } + ] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssImports": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 1, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    It’s bad for performance to use @import because CSS files don't get downloaded in parallel.

    You should use <link rel='stylesheet' href='a.css'> instead.

    ", + "label": "Uses of @import", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssDuplicatedSelectors": { + "value": 24, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 100, + "isBadThreshold": 50, + "isOkThreshold": 0, + "message": "

    This is when two or more selectors are strictly identical and should be merged.

    ", + "label": "Duplicated selectors", + "tool": "phantomas" + }, + "offendersObj": { + "count": 24, + "list": [ + { + "rule": ".selectboxit-arrow-container", + "occurrences": 2 + }, + { + "rule": "#regions_DT div.region", + "occurrences": 2 + }, + { + "rule": ".flex-control-nav", + "occurrences": 2 + }, + { + "rule": ".flex-control-nav li", + "occurrences": 2 + }, + { + "rule": ".flex-control-paging li a", + "occurrences": 2 + }, + { + "rule": ".flex-control-paging li a.flex-active", + "occurrences": 2 + }, + { + "rule": ".ui-menu", + "occurrences": 2 + }, + { + "rule": ".ui-menu .ui-menu-item", + "occurrences": 2 + }, + { + "rule": ".jspDrag", + "occurrences": 2 + }, + { + "rule": ".selectboxit-container *", + "occurrences": 2 + }, + { + "rule": ".selectboxit-container .selectboxit-options a, .selectboxit-container span", + "occurrences": 2 + }, + { + "rule": ".selectboxit-container .selectboxit-options", + "occurrences": 2 + }, + { + "rule": ".flexslider", + "occurrences": 2 + }, + { + "rule": ".selectboxit .selectboxit-arrow-container .selectboxit-arrow", + "occurrences": 2 + }, + { + "rule": ".selectboxit-btn", + "occurrences": 2 + }, + { + "rule": ".selectboxit-btn.selectboxit-enabled:focus, .selectboxit-btn.selectboxit-enabled:hover", + "occurrences": 2 + }, + { + "rule": ".selectboxit-list>.selectboxit-focus>.selectboxit-option-anchor", + "occurrences": 2 + }, + { + "rule": "#enReplay", + "occurrences": 2 + }, + { + "rule": "#cboxOverlay", + "occurrences": 2 + }, + { + "rule": "#cboxContent", + "occurrences": 2 + }, + { + "rule": "#cboxLoadedContent", + "occurrences": 2 + }, + { + "rule": "#cboxTitle", + "occurrences": 2 + }, + { + "rule": "#cboxClose, #cboxNext, #cboxPrevious, #cboxSlideshow", + "occurrences": 2 + }, + { + "rule": "#cboxClose", + "occurrences": 2 + } + ] + }, + "bad": true, + "abnormal": false, + "score": 52, + "abnormalityScore": 0 + }, + "cssDuplicatedProperties": { + "value": 4, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 120, + "isBadThreshold": 60, + "isOkThreshold": 0, + "message": "

    This is the number of property definitions duplicated within a selector.

    ", + "label": "Duplicated properties", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "count": 4, + "offenders": [ + { + "property": "background", + "rule": ".flex-control-paging li a", + "line": 1, + "column": 2803 + }, + { + "property": "border", + "rule": ".selectboxit-list", + "line": 4, + "column": 5954 + }, + { + "property": "background", + "rule": "#onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after", + "line": 4, + "column": 16238 + }, + { + "property": "width", + "rule": ".sprite-play-regions", + "line": 4, + "column": 85469 + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 93, + "abnormalityScore": 0 + }, + "cssEmptyRules": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 100, + "isBadThreshold": 50, + "isOkThreshold": 0, + "message": "

    Very easy to fix: remove all empty rules.

    ", + "label": "Empty rules", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssExpressions": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 20, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    Such as: expression( document.body.clientWidth > 600 ? \"600px\" : \"auto\" )

    This is a bad practice as it slows down browsers. There are some simpler CSS3 methods for doing this.

    ", + "label": "CSS expressions", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssImportants": { + "value": 27, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 200, + "isBadThreshold": 75, + "isOkThreshold": 0, + "message": "

    It can be useful, but only as a last resort. It is a bad practice because it overrides the normal cascading logic. The more you use !important, the more you need it again to over-override. This conducts to a poor maintainability.

    ", + "label": "Uses of !important", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "count": 16, + "offenders": [ + { + "rule": ".flex-direction-nav .flex-disabled", + "property": "opacity", + "value": "0", + "line": 1, + "column": 2105 + }, + { + "rule": ".ui-state-disabled", + "property": "cursor", + "value": "default", + "line": 4, + "column": 681 + }, + { + "rule": ".selectboxit-rendering", + "property": "display", + "value": "inline-block", + "line": 4, + "column": 5139 + }, + { + "rule": ".selectboxit-rendering", + "property": "zoom", + "value": "1", + "line": 4, + "column": 5170 + }, + { + "rule": ".selectboxit-rendering", + "property": "visibility", + "value": "visible", + "line": 4, + "column": 5187 + }, + { + "rule": ".selectboxit-rendering", + "property": "position", + "value": "absolute", + "line": 4, + "column": 5216 + }, + { + "rule": ".selectboxit-rendering", + "property": "top", + "value": "-9999px", + "line": 4, + "column": 5244 + }, + { + "rule": ".selectboxit-rendering", + "property": "left", + "value": "-9999px", + "line": 4, + "column": 5266 + }, + { + "rule": "#combo-replaySelectBoxIt", + "property": "width", + "value": "119px", + "line": 4, + "column": 11028 + }, + { + "rule": "#cboxCurrent", + "property": "display", + "value": "none", + "line": 4, + "column": 27636 + }, + { + "rule": ".fb_iframe_widget>span", + "property": "vertical-align", + "value": "top", + "line": 4, + "column": 40991 + }, + { + "rule": ".boutonGooglePlus, .boutonGooglePlus>iframe", + "property": "width", + "value": "68px", + "line": 4, + "column": 41063 + }, + { + "rule": "#player-onEnAParle .loupe", + "property": "left", + "value": "391px", + "line": 4, + "column": 46189 + }, + { + "rule": "#combo-nb-elementsSelectBoxIt", + "property": "width", + "value": "80px", + "line": 4, + "column": 47460 + }, + { + "rule": "#combo-nb-elementsSelectBoxItArrowContainer", + "property": "width", + "value": "40px", + "line": 4, + "column": 47836 + }, + { + "rule": ".formInput input[type=text], .formInput option, .formInput select, .formInput textarea", + "property": "font-weight", + "value": "700", + "line": 4, + "column": 68643 + } + ] + }, + { + "url": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "count": 5, + "offenders": [ + { + "rule": "body", + "property": "position", + "value": "initial", + "line": 1, + "column": 6 + }, + { + "rule": ".relativeBody .metanav", + "property": "top", + "value": "0", + "line": 1, + "column": 56 + }, + { + "rule": ".metanav.cnil", + "property": "top", + "value": "53px", + "line": 1, + "column": 86 + }, + { + "rule": ".html-cnil", + "property": "padding-top", + "value": "84px", + "line": 1, + "column": 116 + }, + { + "rule": ".html-cnil-mobile", + "property": "padding-top", + "value": "84px", + "line": 1, + "column": 878 + } + ] + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "count": 6, + "offenders": [ + { + "rule": "html", + "property": "padding-top", + "value": "31px", + "line": 1, + "column": 6 + }, + { + "rule": "#captureSignInLink", + "property": "padding", + "value": "0 0 0 30px", + "line": 1, + "column": 6533 + }, + { + "rule": ".sso_link_list li a", + "property": "background", + "value": "none", + "line": 1, + "column": 7458 + }, + { + "rule": "html", + "property": "padding-top", + "value": "31px", + "line": 1, + "column": 6 + }, + { + "rule": "#captureSignInLink", + "property": "padding", + "value": "0 0 0 30px", + "line": 1, + "column": 6533 + }, + { + "rule": ".sso_link_list li a", + "property": "background", + "value": "none", + "line": 1, + "column": 7458 + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 64, + "abnormalityScore": 0 + }, + "cssOldIEFixes": { + "value": 3, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 300, + "isBadThreshold": 75, + "isOkThreshold": 0, + "message": "

    What browser do you need to support? Once you've got the answer, take a look at these old rules that pollute your CSS code and remove them.

    IE6:

    • * html
    • html > body (everything but IE6)

    IE7:

    • *height: 123px;
    • height: 123px !ie;

    IE9:

    • -ms-filter
    • progid:DXImageTransform.Microsoft

    ", + "label": "Old IE fixes", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "count": 3, + "offenders": [ + { + "css": "* html .slides", + "line": 1, + "column": 837, + "bolded": "* html .slides", + "browser": "IE6" + }, + { + "css": "* html .jspCorner", + "line": 4, + "column": 2700, + "bolded": "* html .jspCorner", + "browser": "IE6" + }, + { + "css": "#onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)}", + "line": 4, + "column": 16571, + "bolded": "#onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)}", + "browser": "IE9" + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 96, + "abnormalityScore": 0 + }, + "cssOldPropertyPrefixes": { + "value": 39, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 300, + "isBadThreshold": 75, + "isOkThreshold": 0, + "message": "

    Many property prefixes such as -moz- or -webkit- are not needed anymore, or by very few people. Sometimes, they have never even existed. You can remove them or replace them with the non-prefixed version. This will help reducing your stylesheets weight.

    The prefixes database comes from Can I Use.

    ", + "label": "Old prefixes", + "tool": "phantomas" + }, + "offendersObj": { + "count": 39, + "list": [ + { + "property": "-webkit-border-radius", + "message": "was required by Android Browser 2.1, Chrome 4, iOS Safari 3.2, Safari 4 and earlier", + "rules": [ + { + "rule": ".flexslider ", + "value": "4px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 990 + }, + { + "rule": ".flex-control-paging li a ", + "value": "20px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 2864 + } + ] + }, + { + "property": "-moz-border-radius", + "message": "was required by Firefox 3.6 and earlier", + "rules": [ + { + "rule": ".flexslider ", + "value": "4px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1016 + }, + { + "rule": ".flex-control-paging li a ", + "value": "20px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 2891 + } + ] + }, + { + "property": "-o-border-radius", + "message": "prefix is no longer supported", + "rules": [ + { + "rule": ".flexslider ", + "value": "4px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1039 + }, + { + "rule": ".flex-control-paging li a ", + "value": "20px ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 2915 + } + ] + }, + { + "property": "-webkit-box-shadow", + "message": "was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier", + "rules": [ + { + "rule": ".flexslider ", + "value": "0 1px 4px rgba(0,0,0,.2) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1078 + }, + { + "rule": ".flex-control-paging li a ", + "value": "inset 0 0 3px rgba(0,0,0,.3) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 2956 + }, + { + "rule": ".selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled ", + "value": "none ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 3442 + }, + { + "rule": ".selectboxit-container .selectboxit-options ", + "value": "none ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 3927 + }, + { + "rule": ".selectboxit-list ", + "value": "0 5px 10px rgba(0,0,0,.2) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 5986 + } + ] + }, + { + "property": "-moz-box-shadow", + "message": "was required by Firefox 3.6 and earlier", + "rules": [ + { + "rule": ".flexslider ", + "value": "0 1px 4px rgba(0,0,0,.2) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1122 + }, + { + "rule": ".flex-control-paging li a ", + "value": "inset 0 0 3px rgba(0,0,0,.3) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 3004 + }, + { + "rule": ".selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled ", + "value": "none ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 3466 + }, + { + "rule": ".selectboxit-container .selectboxit-options ", + "value": "none ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 3951 + }, + { + "rule": ".selectboxit-list ", + "value": "0 5px 10px rgba(0,0,0,.2) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 6031 + } + ] + }, + { + "property": "-o-box-shadow", + "message": "prefix is no longer supported", + "rules": [ + { + "rule": ".flexslider ", + "value": "0 1px 4px rgba(0,0,0,.2) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1163 + }, + { + "rule": ".flex-control-paging li a ", + "value": "inset 0 0 3px rgba(0,0,0,.3) ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 3049 + } + ] + }, + { + "property": "-moz-transition", + "message": "was required by Firefox 15 and earlier", + "rules": [ + { + "rule": ".flex-viewport ", + "value": "all 1s ease ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1309 + }, + { + "rule": ".flex-direction-nav a ", + "value": "all .3s ease ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1734 + } + ] + }, + { + "property": "-o-transition", + "message": "prefix is no longer supported", + "rules": [ + { + "rule": ".flex-viewport ", + "value": "all 1s ease ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 1, + "column": 1337 + } + ] + }, + { + "property": "-o-user-select", + "message": "prefix is no longer supported", + "rules": [ + { + "rule": ".selectboxit-container * ", + "value": "none ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 2992 + } + ] + }, + { + "property": "-moz-box-sizing", + "message": "was required by Firefox 28 and earlier", + "rules": [ + { + "rule": ".selectboxit-container .selectboxit-options ", + "value": "border-box ", + "file": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "line": 4, + "column": 3710 + }, + { + "rule": "#footer-transverse #ft-body-container div, #footer-transverse ul ", + "value": "content-box ", + "file": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "line": 1, + "column": 423 + }, + { + "rule": "#footer-transverse #ft-body-container ", + "value": "content-box ", + "file": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "line": 1, + "column": 6154 + }, + { + "rule": ".block.plus .content, .metanav .content #KitSso_loginLink a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 7214 + }, + { + "rule": ".metanav .newsletter a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 8160 + }, + { + "rule": ".metanav .confidentialite a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 9172 + }, + { + "rule": ".block.plus .content, .metanav .content #KitSso_loginLink a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 7214 + }, + { + "rule": ".metanav .newsletter a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 8160 + }, + { + "rule": ".metanav .confidentialite a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 9172 + } + ] + }, + { + "property": "-webkit-box-sizing", + "message": "was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier", + "rules": [ + { + "rule": "#footer-transverse #ft-body-container div, #footer-transverse ul ", + "value": "content-box ", + "file": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "line": 1, + "column": 392 + }, + { + "rule": "#footer-transverse #ft-body-container ", + "value": "content-box ", + "file": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "line": 1, + "column": 6123 + }, + { + "rule": ".block.plus .content, .metanav .content #KitSso_loginLink a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 7183 + }, + { + "rule": ".metanav .newsletter a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 8129 + }, + { + "rule": ".metanav .confidentialite a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 9141 + }, + { + "rule": ".block.plus .content, .metanav .content #KitSso_loginLink a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 7183 + }, + { + "rule": ".metanav .newsletter a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 8129 + }, + { + "rule": ".metanav .confidentialite a ", + "value": "content-box ", + "file": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "line": 1, + "column": 9141 + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 48, + "abnormalityScore": 0 + }, + "cssRedundantBodySelectors": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 200, + "isBadThreshold": 60, + "isOkThreshold": 0, + "message": "

    This is one way to remove complexity from a CSS rule. Generally, when \"body\" is specified in a rule it can be removed, because an element is necessarily inside the body.

    ", + "label": "Redundant body selectors", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "cssRedundantChildNodesSelectors": { + "value": 4, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 200, + "isBadThreshold": 60, + "isOkThreshold": 0, + "message": "

    Some tags included inside other tags are obvious. For example, when \"ul li\" is specified in a rule, \"ul\" can be removed because the \"li\" tag is nearly always inside an \"ul\" container (the \"ol\" container is quite rare). Same thing for \"tr td\", \"select option\", ...

    Lowering compexity in CSS selectors can make the page load a little faster.

    ", + "label": "Redundant tags selectors", + "tool": "phantomas" + }, + "offendersObj": { + "byFile": [ + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "count": 4, + "offenders": [ + { + "css": ".metanav ul.sso_link_list li:hover", + "line": 1, + "column": 7581, + "bolded": ".metanav ul.sso_link_list li:hover" + }, + { + "css": ".metanav ul.sso_link_list li:hover a", + "line": 1, + "column": 7627, + "bolded": ".metanav ul.sso_link_list li:hover a" + }, + { + "css": ".metanav ul.sso_link_list li:hover", + "line": 1, + "column": 7581, + "bolded": ".metanav ul.sso_link_list li:hover" + }, + { + "css": ".metanav ul.sso_link_list li:hover a", + "line": 1, + "column": 7627, + "bolded": ".metanav ul.sso_link_list li:hover a" + } + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 93, + "abnormalityScore": 0 + }, + "totalWeight": { + "value": 1010614, + "policy": { + "unit": "bytes", + "hasOffenders": true, + "isAbnormalThreshold": 3145728, + "isBadThreshold": 2097152, + "isOkThreshold": 716800, + "message": "

    The weight is of course very important if you want the page to load fast. Try to stay under 1MB, which is alreay very long to download over a slow connection.

    Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.

    ", + "label": "Total weight", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "totalWeight": 1010614, + "byType": { + "html": { + "totalWeight": 59152, + "requests": [ + { + "url": "http://pluzz.francetv.fr/", + "weight": 24699 + }, + { + "url": "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp=", + "weight": 1272 + }, + { + "url": "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "weight": 820 + }, + { + "url": "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?", + "weight": 873 + }, + { + "url": "http://ad2play.ftv-publicite.fr/sticky.ads?", + "weight": 417 + }, + { + "url": "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "weight": 6244 + }, + { + "url": "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph", + "weight": 8873 + }, + { + "url": "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph", + "weight": 8873 + }, + { + "url": "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y", + "weight": 837 + }, + { + "url": "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20", + "weight": 6244 + } + ] + }, + "css": { + "totalWeight": 25629, + "requests": [ + { + "url": "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "weight": 18362 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "weight": 1885 + }, + { + "url": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "weight": 940 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "weight": 2221 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "weight": 2221 + } + ] + }, + "js": { + "totalWeight": 561889, + "requests": [ + { + "url": "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "weight": 30746 + }, + { + "url": "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js", + "weight": 29884 + }, + { + "url": "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js", + "weight": 4137 + }, + { + "url": "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js", + "weight": 25849 + }, + { + "url": "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "weight": 4083 + }, + { + "url": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007", + "weight": 3128 + }, + { + "url": "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37", + "weight": 71683 + }, + { + "url": "http://static.francetv.fr/pom/audience/audience.min.js", + "weight": 2955 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "weight": 1274 + }, + { + "url": "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste", + "weight": 20566 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "weight": 1224 + }, + { + "url": "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "weight": 4083 + }, + { + "url": "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js", + "weight": 8008 + }, + { + "url": "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "weight": 1721 + }, + { + "url": "http://static.francetv.fr/pom/publicite/publicite.min.js", + "weight": 7684 + }, + { + "url": "http://www.google-analytics.com/analytics.js", + "weight": 12027 + }, + { + "url": "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "weight": 5022 + }, + { + "url": "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "weight": 731 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=494671", + "weight": 1517 + }, + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "weight": 2144 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "weight": 1999 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=577824", + "weight": 1517 + }, + { + "url": "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "weight": 760 + }, + { + "url": "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js", + "weight": 185349 + }, + { + "url": "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "weight": 6629 + }, + { + "url": "http://ads.rubiconproject.com/ad/9585.js", + "weight": 7381 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "weight": 298 + }, + { + "url": "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "weight": 1052 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "weight": 2083 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "weight": 2297 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "weight": 2102 + }, + { + "url": "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "weight": 718 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "weight": 297 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "weight": 2060 + }, + { + "url": "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B", + "weight": 4907 + }, + { + "url": "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "weight": 6513 + }, + { + "url": "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "weight": 585 + }, + { + "url": "https://c.algovid.com/player/cedato_player_108.22_d.js", + "weight": 95870 + }, + { + "url": "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "weight": 412 + } + ] + }, + "json": { + "totalWeight": 0, + "requests": [] + }, + "image": { + "totalWeight": 297507, + "requests": [ + { + "url": "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png", + "weight": 20336 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "weight": 24333 + }, + { + "url": "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png", + "weight": 6033 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png", + "weight": 4144 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "weight": 2557 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "weight": 2714 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "weight": 13180 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg", + "weight": 29230 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg", + "weight": 7880 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg", + "weight": 6217 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg", + "weight": 3685 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg", + "weight": 7675 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg", + "weight": 6922 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "weight": 11703 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg", + "weight": 26035 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "weight": 14811 + }, + { + "url": "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png", + "weight": 13696 + }, + { + "url": "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "weight": 455 + }, + { + "url": "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "weight": 373 + }, + { + "url": "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "weight": 43 + }, + { + "url": "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "weight": 39204 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "weight": 783 + }, + { + "url": "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "weight": 491 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "weight": 783 + }, + { + "url": "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "weight": 285 + }, + { + "url": "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "weight": 783 + }, + { + "url": "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "weight": 5615 + }, + { + "url": "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "weight": 778 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "weight": 880 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "weight": 850 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "weight": 751 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "weight": 587 + }, + { + "url": "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "weight": 343 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "weight": 313 + }, + { + "url": "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "weight": 615 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "weight": 313 + }, + { + "url": "http://rc.d.chango.com/m/rc", + "weight": 537 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "weight": 313 + }, + { + "url": "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "weight": 33551 + }, + { + "url": "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "weight": 598 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "weight": 313 + }, + { + "url": "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 310 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "weight": 313 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "weight": 310 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "weight": 309 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "weight": 313 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA", + "weight": 313 + } + ] + }, + "video": { + "totalWeight": 0, + "requests": [] + }, + "webfont": { + "totalWeight": 21546, + "requests": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21546 + } + ] + }, + "other": { + "totalWeight": 44891, + "requests": [ + { + "url": "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "weight": 221 + }, + { + "url": "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "weight": 221 + }, + { + "url": "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "weight": 43983 + }, + { + "url": "http://bidi-geo.mythings.com/bidi/rubicon", + "weight": 204 + }, + { + "url": "http://map.media6degrees.com/orbserv/hbpix?pixId=4857", + "weight": 262 + } + ] + } + } + } + }, + "bad": true, + "abnormal": false, + "score": 79, + "abnormalityScore": 0 + }, + "imageOptimization": { + "value": 5861, + "policy": { + "unit": "bytes", + "hasOffenders": true, + "isAbnormalThreshold": 307200, + "isBadThreshold": 122880, + "isOkThreshold": 10240, + "message": "

    This metric measures the number of bytes that could be saved by optimizing images.

    Image optimization is generally one of the easiest way to reduce a page weight, and as a result, the page load time. Don't use Photoshop or other image editing tools, they're not very good for optimization. Use specialized tools such as Kraken.io or the excellent ImageOptim on Mac. For SVG images, you can use SVGOMG

    The tools in use in YellowLabTools are not set to their maximum optimization power (JPEG quality 85), so you might be able to compress even more!

    Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.

    ", + "label": "Image optimization", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "totalGain": 5861, + "images": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "original": 2259, + "isCompressed": false, + "lossless": 1335, + "gain": 924 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "original": 2416, + "isCompressed": false, + "lossless": 1084, + "gain": 1332 + }, + { + "url": "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "original": 33274, + "isCompressed": false, + "lossy": 29669, + "gain": 3605 + } + ] + } + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "gzipCompression": { + "value": 10309, + "policy": { + "unit": "bytes", + "hasOffenders": true, + "isAbnormalThreshold": 153600, + "isBadThreshold": 81920, + "isOkThreshold": 5125, + "message": "

    Measures the number of bytes that could be saved by compressing file transfers.

    Gzip is a powerfull weight reducer and should be enabled on text-based assets in your server's configuration. Note that gzipping small files (< 1 KB) is arguable, and that some assets such as images should not be gzipped as they are already compressed. Here is a list of Content-Types that should be gzipped.

    ", + "label": "Gzip compression", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "totalGain": 10309, + "files": [ + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "original": 1865, + "gzipped": 748, + "gain": 1117 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "original": 1720, + "gzipped": 533, + "gain": 1187 + }, + { + "url": "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "original": 6040, + "gzipped": 1359, + "gain": 4681 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "original": 1712, + "gzipped": 808, + "gain": 904 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "original": 1926, + "gzipped": 929, + "gain": 997 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "original": 1732, + "gzipped": 845, + "gain": 887 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "original": 1689, + "gzipped": 1153, + "gain": 536 + } + ] + } + }, + "bad": true, + "abnormal": false, + "score": 93, + "abnormalityScore": 0 + }, + "fileMinification": { + "value": 0, + "policy": { + "unit": "bytes", + "hasOffenders": true, + "isAbnormalThreshold": 122880, + "isBadThreshold": 61440, + "isOkThreshold": 5125, + "message": "

    This is the weight that could be saved if all text resources were correctly minified.

    The tools in use here are UglifyJS, clean-css and HTMLMinifier. These tools are so good that some of your minified files can be marked as unminified. Change your tool it this happens :)

    The gains of minification are generally small, but the impact can be high when these text files are loaded on the critical path.

    ", + "label": "File minification", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "totalGain": 0, + "files": [] + } + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "totalRequests": { + "value": 184, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 180, + "isBadThreshold": 100, + "isOkThreshold": 15, + "message": "

    This is one of the most important performance rule. Every request is slowing down the page loading.

    There are several technics to reduce their number:

    • Concatenate JS files
    • Concatenate CSS files
    • Embed or inline small JS or CSS files in the HTML
    • Create sprites
    • Base64 encode small images in HTML or stylesheets
    • Use lazyloading for images

    ", + "label": "Requests number", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "total": 184, + "byType": { + "html": [ + "http://pluzz.francetv.fr/", + "http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp=", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=201444148&cid=1071888932.1482935762&tid=UA-12822736-1&_r=1&z=1013049121", + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync", + "http://ib.adnxs.com/seg?add=494671&t=2", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F", + "http://ib.adnxs.com/seg?add=577824&t=2", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F", + "http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F", + "http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "http://ad2play.ftv-publicite.fr/sticky.ads?", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm", + "http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID", + "http://www.google.com/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph", + "http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph", + "http://cm.g.doubleclick.net/pixel?google_nid=rubicon&google_cm&google_sc", + "http://match.adsrvr.org/track/cmf/rubicon", + "http://ad.turn.com/server/pixel.htm?fpid=6&sp=y", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20", + "http://sync.1rx.io/usersync2/rubicon", + "http://match.adsrvr.org/track/cmf/generic?ttd_pid=adconductor&ttd_tpi=1", + "http://tags.bluekai.com/site/6123?redir=http://tap-t.rubiconproject.com/oz/feeds/bluekai/tokens?afu=$_BK_UUID", + "http://sync.extend.tv/r.gif?exchange=rubicon", + "http://rtb-rubicon-user-sync.virool.com/rubicon_user_sync", + "http://sync.1rx.io/usersync/tradedesk/e6921f7e-568b-4755-ae3d-d0c43b1ec7db", + "http://tags.bluekai.com/site/6123?dt=0&r=1375346067&sig=650874363&bkca=KJyguAlJnnnBvYAoLBnUn6AL6YlHv0oB0Apmp0LG0L2vEufHuXfwNzIF6A2nED6oNAdvvDlBELpDnX7wEL6g+A21vfPPiU40MQXB2UxO9Yb+s8W=", + "http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30" + ], + "css": [ + "http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css", + "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css" + ], + "js": [ + "http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js", + "http://pluzz.francetv.fr/js/jquery-2.1.4.min.js", + "http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js", + "http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js", + "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "http://static.francetv.fr/js/jquery.metanav-min.js?20161007", + "http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37", + "http://static.francetv.fr/pom/audience/audience.min.js", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste", + "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js", + "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "http://static.francetv.fr/pom/publicite/publicite.min.js", + "http://www.google-analytics.com/analytics.js", + "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "http://cdn.tradelab.fr/seg.js?add=494671", + "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "http://cdn.tradelab.fr/seg.js?add=577824", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "http://ads.rubiconproject.com/ad/9585.js", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "https://c.algovid.com/player/cedato_player_108.22_d.js", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/" + ], + "json": [], + "image": [ + "http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png", + "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482915905/200/0/france2/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833041/1482915935/200/0/france5/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150826313/1482915945/200/0/franceo/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887922/1482915926/200/0/france4/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845510/1482915915/200/0/france3/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0", + "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://sync.mathtag.com/sync/img?mt_exid=9", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "http://rc.d.chango.com/m/rc", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA" + ], + "video": [], + "webfont": [ + "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff" + ], + "other": [ + "http://pix04.revsci.net/F09828/b3/0/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=", + "http://ads.stickyadstv.com/auto-user-sync", + "http://ads.stickyadstv.com/cookie-forwarding?id=91", + "http://its.tradelab.fr/?type=tp&advid=94597&adata=%7B%22c%22%3A%7B%22ref_url%22%3A%22%22%2C%22ref_ts%22%3A1482935762%2C%22page_url%22%3A%22pluzz.francetv.fr%2F%22%2C%22dm%22%3A%22francetv.fr%22%7D%2C%22v%22%3A%7B%22vis_cnt%22%3A1%2C%22frst_vis_ts%22%3A1482935762%2C%22prev_vis_ts%22%3A1482935762%2C%22curr_vis_ts%22%3A1482935762%2C%22total_page_cnt%22%3A1%2C%22prev_page_cnt%22%3A1%2C%22curr_page_cnt%22%3A1%7D%7D", + "http://ads.stickyadstv.com/user-registering?dataProviderId=141&userId=CAESEBs_rqjcK1hSr7hn7mvo8MM&google_cver=1", + "http://its.tradelab.fr/?type=seg&uuid2=7863569432388688190&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F", + "http://rtd.tubemogul.com/upi/pid/wGbQAlJJ?redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D187%26userId%3D%24%7BTM_USER_ID%7D", + "http://its.tradelab.fr/?type=seg&uuid2=2974760119062136432&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%2F5.0%20(Windows%20NT%206.1)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20YLT%20Chrome%2F27.0.1453.110%20Safari%2F537.36&ur=http%3A%2F%2Fpluzz.francetv.fr%2F", + "http://ads.stickyadstv.com/user-registering?dataProviderId=187&userId=-3304172207026335775", + "http://ads.stickyadstv.com/user-registering?dataProviderId=209&userId=2974760119062136432", + "http://sync.adaptv.advertising.com/sync?rUrl=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D145%26userId%3D%7Buid%7D", + "http://ads.stickyadstv.com/user-registering?dataProviderId=145&userId=4485781162146139132-VBf7158b2a-cd0a-11e6-a06a-0673a0838595", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://tap.rubiconproject.com/oz/feeds/krux/tokens?afu=K-w5dKy1", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "http://pix04.revsci.net/D08734/a3/0/3/0.302?matchId=102", + "http://token.rubiconproject.com/token?pid=2974&pt=n&a=1", + "https://token.rubiconproject.com/token?pid=27384&puid=K-w5dKy1&p=1", + "http://token.rubiconproject.com/token?pid=37556&a=1", + "http://token.rubiconproject.com/token?pid=2046&pt=n&a=1", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1", + "http://sync.ipredictive.com/d/sync/cookie/generic?http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=$%7BADELPHIC_CUID%7D&expires=30", + "http://rub.pxl.ace.advertising.com/cfcm.ashx?providerId=1007&extMatch=1&rcode=1&ctst=1", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "http://rubicon-match.dotomi.com/rubicon/match?nuid=", + "http://bidi-geo.mythings.com/bidi/rubicon", + "http://pixel-a.sitescout.com/dmp/pixelSync?nid=1", + "http://rp.gwallet.com/r1/cm/p29", + "http://map.media6degrees.com/orbserv/hbpix?pixId=4857", + "http://rp.gwallet.com/r1/cm/p29?check_uid_cookie", + "http://s3.algovid.com/ppx/starti?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&cb=1482935772728", + "http://s3.algovid.com/ppx/errori?sid=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&domain=http%3A%2F%2F01-edito-atf-laplacemedia-3.fr&se=f228bf20-0b36-8db8-8929-242fe505a2ed&pv=108.22&f=0&sa=hhd&s=0.0&p=47342825&en=6&em=No%20video%20or%20JSV%20support&cb=1482935772730", + "http://rubicon-match.dotomi.com/rubicon/match?dtm_test=6b2c354a0e830948&nuid=" + ] + } + } + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": -2 + }, + "domains": { + "value": 66, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 50, + "isBadThreshold": 25, + "isOkThreshold": 10, + "message": "

    For each domain met, the browser needs to make a DNS look-up, which is slow. Avoid having to many different domains and the page should render faster.

    By the way, domain sharding is not a good practice anymore.

    ", + "label": "Different domains", + "tool": "phantomas" + }, + "offendersObj": { + "count": 66, + "list": [ + { + "domain": "pixel.rubiconproject.com", + "requests": 15 + }, + { + "domain": "ib.adnxs.com", + "requests": 13 + }, + { + "domain": "refonte.webservices.francetelevisions.fr", + "requests": 11 + }, + { + "domain": "pluzz.francetv.fr", + "requests": 10 + }, + { + "domain": "newsletters.francetv.fr", + "requests": 9 + }, + { + "domain": "ads.stickyadstv.com", + "requests": 9 + }, + { + "domain": "static.francetv.fr", + "requests": 7 + }, + { + "domain": "its.tradelab.fr", + "requests": 7 + }, + { + "domain": "dt.adsafeprotected.com", + "requests": 6 + }, + { + "domain": "cdn.krxd.net", + "requests": 5 + }, + { + "domain": "cm.g.doubleclick.net", + "requests": 5 + }, + { + "domain": "gum.criteo.com", + "requests": 4 + }, + { + "domain": "optimized-by.rubiconproject.com", + "requests": 4 + }, + { + "domain": "token.rubiconproject.com", + "requests": 4 + }, + { + "domain": "www.google-analytics.com", + "requests": 3 + }, + { + "domain": "cdn.tradelab.fr", + "requests": 3 + }, + { + "domain": "pix04.revsci.net", + "requests": 3 + }, + { + "domain": "api.lereferentiel.francetv.fr", + "requests": 2 + }, + { + "domain": "logc238.xiti.com", + "requests": 2 + }, + { + "domain": "pub.ftv-publicite.fr", + "requests": 2 + }, + { + "domain": "sync.mathtag.com", + "requests": 2 + }, + { + "domain": "cdn.turn.com", + "requests": 2 + }, + { + "domain": "beacon.krxd.net", + "requests": 2 + }, + { + "domain": "s.update.rubiconproject.com", + "requests": 2 + }, + { + "domain": "tap2-cdn.rubiconproject.com", + "requests": 2 + }, + { + "domain": "match.adsrvr.org", + "requests": 2 + }, + { + "domain": "rub.pxl.ace.advertising.com", + "requests": 2 + }, + { + "domain": "pixel.adsafeprotected.com", + "requests": 2 + }, + { + "domain": "rubicon-match.dotomi.com", + "requests": 2 + }, + { + "domain": "cm.adgrx.com", + "requests": 2 + }, + { + "domain": "sync.1rx.io", + "requests": 2 + }, + { + "domain": "tags.bluekai.com", + "requests": 2 + }, + { + "domain": "rp.gwallet.com", + "requests": 2 + }, + { + "domain": "s3.algovid.com", + "requests": 2 + }, + { + "domain": "pluzz.webservices.francetelevisions.fr", + "requests": 1 + }, + { + "domain": "googleads.g.doubleclick.net", + "requests": 1 + }, + { + "domain": "www.facebook.com", + "requests": 1 + }, + { + "domain": "pq-direct.revsci.net", + "requests": 1 + }, + { + "domain": "4610658.fls.doubleclick.net", + "requests": 1 + }, + { + "domain": "5110145.fls.doubleclick.net", + "requests": 1 + }, + { + "domain": "www.francetvinfo.fr", + "requests": 1 + }, + { + "domain": "stats.g.doubleclick.net", + "requests": 1 + }, + { + "domain": "staticftv-a.akamaihd.net", + "requests": 1 + }, + { + "domain": "rtd.tubemogul.com", + "requests": 1 + }, + { + "domain": "ad2play.ftv-publicite.fr", + "requests": 1 + }, + { + "domain": "ads.rubiconproject.com", + "requests": 1 + }, + { + "domain": "cdn.oas-eu1.adnxs.com", + "requests": 1 + }, + { + "domain": "lpm-francetv.nuggad.net", + "requests": 1 + }, + { + "domain": "sync.adaptv.advertising.com", + "requests": 1 + }, + { + "domain": "www.google.com", + "requests": 1 + }, + { + "domain": "presentation-hkg1.turn.com", + "requests": 1 + }, + { + "domain": "www.google.com.ph", + "requests": 1 + }, + { + "domain": "p.algovid.com", + "requests": 1 + }, + { + "domain": "tap.rubiconproject.com", + "requests": 1 + }, + { + "domain": "c.algovid.com", + "requests": 1 + }, + { + "domain": "rc.d.chango.com", + "requests": 1 + }, + { + "domain": "boa-pluzz.francetelevisions.fr", + "requests": 1 + }, + { + "domain": "pixel.tapad.com", + "requests": 1 + }, + { + "domain": "sync.ipredictive.com", + "requests": 1 + }, + { + "domain": "ad.turn.com", + "requests": 1 + }, + { + "domain": "bidi-geo.mythings.com", + "requests": 1 + }, + { + "domain": "pixel-a.sitescout.com", + "requests": 1 + }, + { + "domain": "sync.extend.tv", + "requests": 1 + }, + { + "domain": "tap-s.rubiconproject.com", + "requests": 1 + }, + { + "domain": "map.media6degrees.com", + "requests": 1 + }, + { + "domain": "rtb-rubicon-user-sync.virool.com", + "requests": 1 + } + ] + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": -40 + }, + "notFound": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 1, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    404 errors are never cached, so each time a page ask for it, it hits the server. Even if it is behind a CDN or a reverse-proxy cache.

    ", + "label": "404 not found", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "closedConnections": { + "value": 5, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 20, + "isBadThreshold": 7, + "isOkThreshold": 0, + "message": "

    This counts the number of requests not keeping the connection alive (specifying \"Connection: close\" in the response headers). It is only counting a request if it is followed by another request on the same domain.

    This is slowing down the next request, because the brower needs to open a new connection to the server, which means an additional round-trip.

    Correct the problem by setting a Keep-Alive header on the guilty server.

    ", + "label": "Connections closed", + "tool": "phantomas" + }, + "offendersObj": { + "count": 5, + "list": [ + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=", + "http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20", + "http://rubicon-match.dotomi.com/rubicon/match?nuid=", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w" + ] + }, + "bad": true, + "abnormal": false, + "score": 29, + "abnormalityScore": 0 + }, + "identicalFiles": { + "value": 4, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 15, + "isBadThreshold": 5, + "isOkThreshold": 0, + "message": "

    This is the number of requests that could be avoided, because of downloaded files that have the same content but are loaded from different URLs.

    Try to load them from the same URL.

    ", + "label": "Identical content", + "tool": "redownload" + }, + "offendersObj": { + "avoidableRequests": 4, + "count": 4, + "list": [ + { + "weight": 3287, + "urls": [ + "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "http://cdn.krxd.net/controltag/J1mXKWTY.js" + ] + }, + { + "weight": 1148, + "urls": [ + "http://cdn.tradelab.fr/seg.js?add=494671", + "http://cdn.tradelab.fr/seg.js?add=577824" + ] + }, + { + "weight": 177, + "urls": [ + "http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1?", + "https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1?" + ] + }, + { + "weight": 5846, + "urls": [ + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&mktid=944&mpid=&fpid=6&rnd=3386922659611268114&nu=y&sp=y&ctid=1&cyid=105&app=n&et=n&synct=20", + "http://cdn.turn.com/server/ddc.htm?uid=3130468928687144377&rnd=7886680802566030663&fpid=6&nu=n&t=&sp=y&purl=&ctid=4&cyid=105&et=n&synct=20" + ] + } + ] + }, + "bad": true, + "abnormal": false, + "score": 20, + "abnormalityScore": 0 + }, + "emptyRequests": { + "value": 3, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 5, + "isBadThreshold": 1, + "isOkThreshold": 0, + "message": "

    List of GET requests that respond with an empty body. These are probably the easiest requests to remove.

    ", + "label": "Empty requests", + "tool": "redownload" + }, + "offendersObj": { + "count": 3, + "list": [ + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=18414&di=pluzz.francetv.fr&ap=&ti=d66046bc-2306-4162-850b-d7f1bbbeba79&dt=8736481428691810142000", + "http://s.update.rubiconproject.com/2/873648/analytics.js?si=19915&di=pluzz.francetv.fr&ap=&ti=c66e8591-abf7-4b91-8454-c8aec72f094e&dt=8736481428691810142000", + "http://bidi-geo.mythings.com/bidi/rubicon" + ] + }, + "bad": true, + "abnormal": false, + "score": 0, + "abnormalityScore": 0 + }, + "smallRequests": { + "value": 64, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 50, + "isBadThreshold": 30, + "isOkThreshold": 4, + "message": "

    List of all requests that are less than 2 KB. Try to merge them with other files.

    ", + "label": "Small requests", + "tool": "redownload" + }, + "offendersObj": { + "list": { + "total": 64, + "byType": { + "css": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css", + "size": 1537 + }, + { + "url": "http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css", + "size": 594 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "size": 1828 + }, + { + "url": "http://static.francetv.fr/css/metanav/default-min-v1.8.39.css", + "size": 1828 + } + ], + "js": [ + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js", + "size": 914 + }, + { + "url": "http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js", + "size": 866 + }, + { + "url": "http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js", + "size": 1360 + }, + { + "url": "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "size": 159 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=494671", + "size": 1148 + }, + { + "url": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "size": 1865 + }, + { + "url": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "size": 1720 + }, + { + "url": "http://cdn.tradelab.fr/seg.js?add=577824", + "size": 1148 + }, + { + "url": "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "size": 51 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "size": 62 + }, + { + "url": "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "size": 384 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "size": 1712 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "size": 1926 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "size": 1732 + }, + { + "url": "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "size": 168 + }, + { + "url": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "size": 61 + }, + { + "url": "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "size": 1689 + }, + { + "url": "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "size": 70 + }, + { + "url": "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "size": 178 + } + ], + "image": [ + { + "url": "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "size": 44 + }, + { + "url": "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "size": 35 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "size": 43 + }, + { + "url": "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "size": 35 + }, + { + "url": "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "size": 43 + }, + { + "url": "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "size": 43 + }, + { + "url": "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "size": 43 + }, + { + "url": "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "size": 43 + }, + { + "url": "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "size": 43 + }, + { + "url": "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "size": 42 + }, + { + "url": "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "size": 42 + }, + { + "url": "http://rc.d.chango.com/m/rc", + "size": 35 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "size": 42 + }, + { + "url": "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "size": 95 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "size": 42 + }, + { + "url": "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "size": 42 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "size": 43 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "size": 42 + }, + { + "url": "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA", + "size": 42 + } + ] + } + } + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": -30 + }, + "lazyLoadableImagesBelowTheFold": { + "value": 6, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 30, + "isBadThreshold": 12, + "isOkThreshold": 1, + "message": "

    This is the number of images displayed below the fold that could be lazy-loaded. This is an excellent way to accelerate the loading time of an heavy page.

    I recommend using this lazyloader.

    ", + "label": "Below the fold images", + "tool": "phantomas" + }, + "offendersObj": { + "count": 6, + "list": [ + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg", + "http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg", + "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg", + "http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg" + ] + }, + "bad": true, + "abnormal": false, + "score": 55, + "abnormalityScore": 0 + }, + "hiddenImages": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 30, + "isBadThreshold": 12, + "isOkThreshold": 1, + "message": "

    List of all images that have a display:none property, or one of their parents. These images are loaded by the browser even if they're not visible. You might be able to find a way to lazy-load them, only when they get visible.

    As images displayed in 1x1 pixels tend to be trackers, they are excluded from this rule.

    ", + "label": "Hidden images", + "tool": "phantomas" + }, + "offendersObj": { + "count": 0, + "list": [] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "fontsCount": { + "value": 1, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 7, + "isBadThreshold": 5, + "isOkThreshold": 1, + "message": "

    This is the number of custom web fonts loaded on the page.

    Webfonts are beautiful, but heavy. You should keep their number as low as possible.

    ", + "label": "Webfonts number", + "tool": "redownload" + }, + "offendersObj": { + "count": 1, + "list": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "size": 21240 + } + ] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "heavyFonts": { + "value": 0, + "policy": { + "hasOffenders": true, + "unit": "bytes", + "isAbnormalThreshold": 204800, + "isBadThreshold": 102400, + "isOkThreshold": 0, + "message": "

    This metric is the sum of all bytes above 40KB in loaded fonts. Over this size, the font is probably not optimized for the web.

    It can be a compresson issue, a font that contains too many glyphs or a font with complex shapes.

    Sorry, Yellow Lab Tools is not yet compatible with the WOFF2 font format that generates 20-30% smaller fonts. You can proceed to a manual verification on a modern browser.

    ", + "label": "Overweighted webfonts", + "tool": "redownload" + }, + "offendersObj": { + "count": 0, + "fonts": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21240, + "numGlyphs": 220, + "averageGlyphComplexity": 23.9 + } + ], + "totalGain": 0 + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "unusedUnicodeRanges": { + "value": 0, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 12, + "isBadThreshold": 8, + "isOkThreshold": 0, + "message": "

    This metric counts the number of unused Unicode ranges inside each font. For example, one font could include Cyrillic glyphs but none of them are used on the page.

    Because of technical limitations, Yellow Lab Tools checks each font against the glyphs of the entire page. As a result, estimated use is >= to reality. For example, if you read that 10 glyphs are \"possibly used\", it means that these 10 glyphs are used on the page but nothing guaranties that they are displayed using this font.

    Tools such as Font Squirrel can remove some unicode ranges from a font.

    In the case of an icon font, make sure you only keep the icons that are used on the website and to remove the others. Several tools are able to extract SVG images from a font, then some other tools can generate a font from the SVGs you want to keep.

    ", + "label": "Unused Unicode ranges", + "tool": "redownload" + }, + "offendersObj": { + "count": 0, + "fonts": [ + { + "url": "http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff", + "weight": 21240, + "isIconFont": false, + "unicodeRanges": [ + { + "name": "Basic Latin", + "rangeStart": 32, + "rangeEnd": 127, + "charset": " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + "numGlyphsInCommonWithPageContent": 72, + "coverage": 0.9895833333333334 + }, + { + "name": "Latin-1 Supplement", + "rangeStart": 160, + "rangeEnd": 255, + "charset": " ¡¢£¤¥¦§¨©ª«¬­®¯°±´µ¶·¸º»¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖרÙÚÛÜßàáâãäåæçèéêëìíîïñòóôõö÷øùúûüÿ", + "numGlyphsInCommonWithPageContent": 14, + "coverage": 0.875 + }, + { + "name": "Latin Extended", + "rangeStart": 256, + "rangeEnd": 591, + "charset": "ŒœŸ", + "numGlyphsInCommonWithPageContent": 0, + "coverage": 0.008928571428571428 + }, + { + "name": "Others", + "charset": "\u0000\rˆ˜           ‐‑‒–—‘’‚“”„•… ‹› €™◼fifl￿", + "numGlyphsInCommonWithPageContent": 2 + } + ] + } + ] + }, + "bad": false, + "abnormal": false, + "score": 100, + "abnormalityScore": 0 + }, + "http2": { + "value": "No", + "score": 0, + "bad": true, + "abnormal": false, + "abnormalityScore": 0, + "policy": { + "label": "HTTP/2 or SPDY", + "message": "

    HTTP/2 is the latest version of the HTTP protocol and is designed to optimize load speed. SPDY is deprecated but still very well supported.

    The latest versions of all major browsers are now compatible. The difficulty is on the server side, where technologies are not quite ready yet.

    " + } + }, + "cachingDisabled": { + "value": 41, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 25, + "isBadThreshold": 12, + "isOkThreshold": 0, + "message": "

    Counts responses with caching disabled (max-age=0)

    Fix immediatly if on static assets.

    ", + "label": "Caching disabled", + "tool": "phantomas" + }, + "offendersObj": { + "count": 41, + "list": [ + "http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0", + "https://www.facebook.com/tr?id=882125681855230&ev=PageView", + "http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482935761616", + "http://www.google-analytics.com/r/collect?v=1&_v=j47&a=209894968&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=620729831&cid=1071888932.1482935762&tid=UA-38414326-1&_r=1&z=1064618144", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2", + "https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=1071888932.1482935762&jid=201444148&_v=j47&z=1013049121", + "http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2", + "http://its.tradelab.fr/?type=tlsync&uuid2=771241001175707347&callback=tl_sync", + "http://ib.adnxs.com/seg?add=2491894:47&t=2", + "http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482935761923@x01,x02,Middle?kuid=rej06roee", + "https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.04026933549903333&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEGd7bRFjgGRsG0iSh1jv7dE&google_cver=1", + "http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.0809449425432831&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10", + "http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.4987873921636492&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15", + "http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D", + "http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.3542968563269824&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.session_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.session_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.session_count.10.19915=0x4,0x5863c3bf,0x5863cba7&ls_c.visits_count.10.78422=0x5,0x5863bfd9,0x5863cba6&ls_c.visits_count.15.18414=0x4,0x5863c3c0,0x5863cba8&ls_c.visits_count.15.19915=0x4,0x5863c3c0,0x5863cba7&ls_c.visits_count.10.19915=0x4,0x5863c3bf,0x5863cba7&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15", + "http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=59494699&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D185194605&ipr=y", + "https://p.algovid.com/player/player.js?p=47342825&sid=http://01-edito-atf-laplacemedia-3.fr%5E12%5EPhilippines&cb=3058411334649216441&w=300&h=250&d=http://01-edito-atf-laplacemedia-3.fr", + "http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck", + "http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://sync.mathtag.com/sync/img?mt_exid=9", + "http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/194352551/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a7a64514143756164?_RM_EMPTY_&kuid=rej06roee", + "http://pixel.rubiconproject.com/tap.php?v=16728&nid=2810&put=BLb1tb5s_x0IB3l9rO1_rsMZH1Gv&expires=40", + "http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=f79c5864-cdd7-4a00-8d2b-4fe89970aa09", + "http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESEO-dkwvWXAiP_KsaXAJAKRw&google_cver=1", + "http://rc.d.chango.com/m/rc", + "http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=e6921f7e-568b-4755-ae3d-d0c43b1ec7db&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUID76ss8eds43dpznjrzxfjeh6g46xsdxkocpjt7yh4pd3ib84t8nbo====&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=17149&nid=2861&put=fb686ada-cd0a-11e6-908d-c799dc709341&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4212&nid=1185&put=3130468928687144377&expires=60", + "http://cm.adgrx.com/bridge?AG_SETCOOKIE&AG_PID=rubicon", + "http://cm.adgrx.com/bridge.gif?AG_PID=rubicon", + "http://pixel.rubiconproject.com/tap.php?v=103820&nid=3838&put=B99F00ADDECD6358960DCD16021D32B7&expires=365", + "http://pixel.rubiconproject.com/tap.php?v=144054&nid=4032&put=fc2ea04c-cd0a-11e6-a57f-c4a056007759&expires=60", + "http://pixel.rubiconproject.com/tap.php?v=7935&nid=2271&expires=30&put=U0aCJmUrw_6aL3CMYVwg2XHnfxc", + "http://pixel.rubiconproject.com/tap.php?v=186028&nid=4112&put=RX-3e3e1aea-9f17-4c2f-963a-c1b654bd8dd5&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=2974760119062136432&expires=30", + "http://pixel.rubiconproject.com/tap.php?v=5364%7C1%7C90&nid=2046&expires=90&put=AAAD12d9osk_awNERav-AAAAAAA" + ] + }, + "bad": true, + "abnormal": true, + "score": 0, + "abnormalityScore": -64 + }, + "cachingNotSpecified": { + "value": 16, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 40, + "isBadThreshold": 20, + "isOkThreshold": 5, + "message": "

    When no caching is specified, each browser will handle it differently. Most of the time, it will automatically add a cache for you, but a poor one. You'd better handle it yourself.

    ", + "label": "Caching not specified", + "tool": "phantomas" + }, + "offendersObj": { + "count": 16, + "list": [ + "http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw", + "http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2236011718056&jv=0&re=1366x768&vtag=4.6.2&hl=22x36x1&r=1366x768x24x24&rn=1482935761307&ref=&Rdt=On", + "http://cdn.oas-eu1.adnxs.com/0/default/empty.gif", + "http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2", + "http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1", + "http://beacon.krxd.net/pixel.gif?source=smarttag&fired=report&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=2176&t_content_ready=3919&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=true&store_user_after=rej1qnzgn&userdata_user=K-w5dKy1%2Crej1qnzgn&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2C540", + "http://pixel.tapad.com/idsync/ex/receive?partner_id=2387&partner_device_id=IX91O45G-18-JZN9", + "http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=194352551&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1,c:yebHtm,sl:inView,em:false,fr:true,mn:app19sje,pt:1-5-15,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:29,oid:fb317c76-cd0a-11e6-a65a-00259035dba0,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1988636716,ov:0", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtC,pingTime:0,time:44,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:44,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:44,fi:0,fo:0,fn:44%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://tap-s.rubiconproject.com/oz/agent/rubicon/channels.js?cb=oz_onPixelsLoaded&rf=http%3A//pluzz.francetv.fr/", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHJQ,pingTime:1,time:1050,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1050,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1050,fi:0,fo:0,fn:1050%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1043~100],as:[1043~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:821,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebHtF,pingTime:-2,time:47,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:47,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:47,fi:0,fo:0,fn:47%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[41~100],as:[41~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:15,readyFired:true%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMs,pingTime:5,time:5056,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5056,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5056,fi:0,fo:0,fn:5056%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5049~100],as:[5049~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w", + "http://dt.adsafeprotected.com/dt?anId=922445&asId=4ec2b73e-27b9-e0c2-fa92-d3fcbc5676c1&tv=%7Bc:yebIMu,pingTime:5,time:5058,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:5058,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:5058,fi:0,fo:0,fn:5058%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:27,wc:0.0.1366.768,ac:858.462.300.250,am:a,cc:858.462.300.250,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[5051~100],as:[5051~300.250]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:2451,fm:q6GPnAo+1*.922445%7C11%7C12%7C13%7C14%7C15%7C1611%7C17%7C18,idMap:1*%7D&br=w" + ] + }, + "bad": true, + "abnormal": false, + "score": 27, + "abnormalityScore": 0 + }, + "cachingTooShort": { + "value": 23, + "policy": { + "hasOffenders": true, + "isAbnormalThreshold": 40, + "isBadThreshold": 20, + "isOkThreshold": 5, + "message": "

    Responses with too short caching time (less than a week).

    The longer you cache, the better. Add versionning to your static assets, if it's not already done, and set their cache time to one year.

    ", + "label": "Caching too short", + "tool": "phantomas" + }, + "offendersObj": { + "count": 23, + "list": [ + { + "file": "http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste", + "ttl": 274, + "ttlWithUnit": 5, + "unit": "minutes" + }, + { + "file": "http://cdn.tradelab.fr/seg.js?add=494671", + "ttl": 300, + "ttlWithUnit": 5, + "unit": "minutes" + }, + { + "file": "http://cdn.tradelab.fr/tag/59763bfbc2.js", + "ttl": 300, + "ttlWithUnit": 5, + "unit": "minutes" + }, + { + "file": "http://cdn.tradelab.fr/seg.js?add=577824", + "ttl": 300, + "ttlWithUnit": 5, + "unit": "minutes" + }, + { + "file": "http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus", + "ttl": 404, + "ttlWithUnit": 7, + "unit": "minutes" + }, + { + "file": "http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp", + "ttl": 532, + "ttlWithUnit": 9, + "unit": "minutes" + }, + { + "file": "http://cdn.krxd.net/controltag?confid=J1mXKWTY", + "ttl": 1200, + "ttlWithUnit": 20, + "unit": "minutes" + }, + { + "file": "http://cdn.krxd.net/controltag/J1mXKWTY.js", + "ttl": 1200, + "ttlWithUnit": 20, + "unit": "minutes" + }, + { + "file": "http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata", + "ttl": 1800, + "ttlWithUnit": 30, + "unit": "minutes" + }, + { + "file": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15", + "ttl": 3599, + "ttlWithUnit": 3, + "unit": "days" + }, + { + "file": "https://c.algovid.com/player/cedato_player_108.22_d.js", + "ttl": 3600, + "ttlWithUnit": 3, + "unit": "days" + }, + { + "file": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15", + "ttl": 3600, + "ttlWithUnit": 3, + "unit": "days" + }, + { + "file": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10", + "ttl": 3600, + "ttlWithUnit": 3, + "unit": "days" + }, + { + "file": "http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10", + "ttl": 3600, + "ttlWithUnit": 3, + "unit": "days" + }, + { + "file": "http://www.google-analytics.com/analytics.js", + "ttl": 7200, + "ttlWithUnit": 2, + "unit": "hours" + }, + { + "file": "http://ads.rubiconproject.com/ad/9585.js", + "ttl": 7544, + "ttlWithUnit": 2, + "unit": "hours" + }, + { + "file": "http://static.francetv.fr/img/metanav/sprite-v1.8.28.png", + "ttl": 23529, + "ttlWithUnit": 7, + "unit": "hours" + }, + { + "file": "http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png", + "ttl": 86400, + "ttlWithUnit": 24, + "unit": "hours" + }, + { + "file": "http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png", + "ttl": 86400, + "ttlWithUnit": 24, + "unit": "hours" + }, + { + "file": "http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png", + "ttl": 86400, + "ttlWithUnit": 24, + "unit": "hours" + }, + { + "file": "http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png", + "ttl": 86400, + "ttlWithUnit": 24, + "unit": "hours" + }, + { + "file": "http://presentation-hkg1.turn.com/server/ads.js?pub=5766351&cch=5766918&code=5766930&l=300x250&aid=40627080&ahcid=16494106&bimpd=~FQ78cZYKnSv-qUJzSeIMEHHvpFWc2rAXK0GHEwSfKDQ2LNGVpeWSGbr8Es3N70RYSWn6irTH0LUt-Obbe8S2F70yRopjJbJBXnEh4lxcbCLR0UeqTSCWCIxuHvL6asNzwDHsVQ_xbl3m8xuDE2GG32hqytW9oqFvhz9avm2nqqUpCRBlEdJvkTTP4EthQln5ynhoeju-sxgvRAj_V9LMNcxhXA-fEBaektwG60jnlLXq2EoLdyU-AXU8Jzq00ewPco2CTEFqhY1Mho5accWtrLYN39QORzgTINuTkSiuDOVSmKqyzGaN2-wz8KQcyPyXFbQmeWpj9LmMo6hT1CkH0gxdaQuN-4JvpR78ta6MrLa8Wl8fHbf_UiLovtS9r0ThfOd7W04pCcCczIGOV8VKWzjjjq3vQCkGRXTsUDKwLBdRP-mb8LCBbcQ1TU8CkuapQwj8FscFkd8Elh5_LUzI2oJmzVg3hyKE4yb9tM0AiK3-W-mzjBytBs29PuaKBoxxpq0gqmx66uLyJV_1DOWYoD5DdWHAnREUVRrSrdSpZmn4l13mCRYguA_tetuIMl1ew8exLFWFI1XtxqE7LwxMJRbMPJT9xxYrb6UM3Hk0zQfu4jq9KuTyZYV2C1_EHiVCEL_ys-tODeoNSdm8xBhu9mochzoIbQo-K4U14x6sgqJBL5toyHKeZiPllH-mi4bfrhwNfj7DneLS9Qz1bkwWS1bYGU5wNvXk0SKslQLdATVaaQqSHY_yESqLe2tj6wDiGQURRg9kRSx9nK_ctGr_7PlMiuj_7DlTMAc5Ll1HuyVM6nlaecUsjWgM3NexwjKi&acp=A72B8E719475467B", + "ttl": 172800, + "ttlWithUnit": 2, + "unit": "days" + }, + { + "file": "http://static.francetv.fr/js/jquery.metanav-min.js?20161007", + "ttl": 578693, + "ttlWithUnit": 7, + "unit": "days" + } + ] + }, + "bad": true, + "abnormal": false, + "score": 0, + "abnormalityScore": 0 + } + }, + "scoreProfiles": { + "generic": { + "categories": { + "pageWeight": { + "label": "Page weight", + "categoryScore": 88, + "rules": [ + "totalWeight", + "imageOptimization", + "gzipCompression", + "fileMinification" + ] + }, + "requests": { + "label": "Requests", + "categoryScore": 12, + "rules": [ + "totalRequests", + "domains", + "notFound", + "identicalFiles", + "emptyRequests", + "smallRequests", + "lazyLoadableImagesBelowTheFold", + "hiddenImages" + ] + }, + "domComplexity": { + "label": "DOM complexity", + "categoryScore": 41, + "rules": [ + "DOMelementsCount", + "DOMelementMaxDepth", + "iframesCount", + "DOMidDuplicated" + ] + }, + "domManipulations": { + "label": "DOM manipulations", + "categoryScore": -19, + "rules": [ + "DOMaccesses", + "queriesWithoutResults", + "DOMqueriesAvoidable" + ] + }, + "scroll": { + "label": "Scroll bottlenecks", + "categoryScore": 100, + "rules": [ + "eventsScrollBound", + "DOMaccessesOnScroll" + ] + }, + "badJavascript": { + "label": "Bad JavaScript", + "categoryScore": 95, + "rules": [ + "jsErrors", + "documentWriteCalls", + "synchronousXHR", + "consoleMessages", + "globalVariables" + ] + }, + "jQuery": { + "label": "jQuery", + "categoryScore": 34, + "rules": [ + "jQueryVersion", + "jQueryVersionsLoaded", + "jQueryCallsOnEmptyObject", + "jQueryNotDelegatedEvents" + ] + }, + "cssComplexity": { + "label": "CSS complexity", + "categoryScore": 81, + "rules": [ + "cssRules", + "cssComplexSelectors", + "cssColors", + "similarColors", + "cssBreakpoints", + "cssMobileFirst" + ] + }, + "badCSS": { + "label": "Bad CSS", + "categoryScore": 86, + "rules": [ + "cssParsingErrors", + "cssImports", + "cssDuplicatedSelectors", + "cssDuplicatedProperties", + "cssEmptyRules", + "cssExpressions", + "cssImportants", + "cssOldIEFixes", + "cssOldPropertyPrefixes", + "cssRedundantBodySelectors", + "cssRedundantChildNodesSelectors" + ] + }, + "fonts": { + "label": "Web fonts", + "categoryScore": 100, + "rules": [ + "fontsCount", + "heavyFonts", + "unusedUnicodeRanges" + ] + }, + "serverConfig": { + "label": "Server config", + "categoryScore": -6, + "rules": [ + "http2", + "closedConnections", + "cachingNotSpecified", + "cachingDisabled", + "cachingTooShort" + ] + } + }, + "globalScore": 52 + } + } +} diff --git a/test.xml b/test.xml new file mode 100644 index 0000000..500887d --- /dev/null +++ b/test.xml @@ -0,0 +1,5182 @@ + + + + http://pluzz.francetv.fr + + desktop + + + + + + + + + + 1959 + + false + 4000 + 2500 + 1000 + <p>A high number of DOM elements means a lot of work for the browser to render the page.</p><p>It also slows down JavaScript DOM queries, as there are more elements to search through.</p> + + phantomas + + true + false + 36 + 0 + + + 15 + + true + 28 + 20 + 10 + <p>A deep DOM makes the CSS matching with DOM elements difficult.</p><p>It also slows down JavaScript modifications to the DOM because changing the dimensions of an element makes the browser re-calculate the dimensions of it's parents. Same thing for JavaScript events, that bubble up to the document root.</p> + + phantomas + + + 155 + + +
    + +
    +
    +
    +
    + +
  • + + + + + + + 7 + 7 + 7 + + + + + 2 + 2 + 2 + + + + + + + 1 + 1 + + + + + + +
  • +
  • + + + + + + + 5 + 5 + 5 + + + + + 2 + 2 + 2 + + + 1 + 1 + 1 + + + + + 1 + 1 + 1 + + + + + + + 1 + 1 + + + + + + +
  • +
  • + + + + + + + 2 + 2 + 2 + + + + + 10 + 10 + 10 + + + + + + + 1 + 1 + + + + + + +
  • +
  • + + + + + + + 1 + 1 + 1 + + + + + 9 + 9 + 9 + + + + + + + 1 + 1 + + + + + + +
  • +
  • + + + + + + + 8 + 8 + 8 + + + + + 1 + 1 + 1 + + + + + + +
  • +
    +
    +
    +
    +
    +
    +
    + +
    +
    + true + false + 50 + 0 +
    + + 8 + + false + 30 + 15 + 2 + <p>iFrames are the most complex HTML elements. They are pages, just like the main page, and the browser needs to create a new page context, which has a cost.</p> + + phantomas + + true + false + 54 + 0 + + + 3 + + true + 50 + 5 + 0 + <p>IDs of HTML elements must be document-wide unique. This can cause problems with getElementById returning the wrong element.</p> + + phantomas + + + 3 + + + guide-tranche-1 + 8 + + + guide-tranche-2 + 8 + + + guide-tranche-3 + 8 + + + + true + false + 40 + 0 + + + 2863 + + false + 3000 + 1500 + 50 + <p>This metric counts the number of calls to DOM related functions (both native DOM functions and jQuery functions) on page load.</p><p>The more your JavaScript code accesses the DOM, the slower the page will load.</p><p>Try, as much as possible, to have an HTML page fully generated by the server instead of making changes with JS.</p><p>Try to reduce the number of queries by refactoring your JavaScript code.</p><p>Binding too many events also has a cost. Try to use <a href="https://learn.jquery.com/events/event-delegation/" target="_blank">event delegation</a> as much as possible.</p> + + jsExecutionTransformer + + true + false + 0 + 0 + + + 195 + + false + 200 + 100 + 0 + <p>Number of queries that return no result. Both native and jQuery DOM requests are counted.</p><p>It suggests the query is not used on the page, probably because it is some dead code.</p><p>Or maybe the code is trying to find an HTML block that is not always here. Look at the JS Timeline to see if the scripts correctly figures out the HTML block is not here and immediatly stops interacting further with the DOM.</p> + + jsExecutionTransformer + + true + false + 0 + 0 + + + 454 + + DOMqueriesDuplicated + true + 500 + 200 + 0 + <p>This is the number of queries that could be avoided by removing all duplicated queries.</p><p>Simply save the result of a query in a variable. Ok it is not always simple, especially with third-party scripts, but at least do it with your own code.</p> + + phantomas + + + 35 + + + i + + domElement + div.adCtnt + + +
    + +
    +
    +
    + 1 +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 90 +
    + + b + + document + + getElementsByTagName + 53 + + + #p + + document + + getElementById + 46 + + + a + + domElement + div.adCtnt + + +
    + +
    +
    +
    + 1 +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 45 +
    + + o + + domElement + div.adCtnt + + +
    + +
    +
    +
    + 1 +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 45 +
    + + e + + domElement + div.adCtnt + + +
    + +
    +
    +
    + 1 +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 45 +
    + + d + + domElement + div.adCtnt + + +
    + +
    +
    +
    + 1 +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 45 +
    + + s + + document + + getElementsByTagName + 22 + + + * + + document + + getElementsByTagName + 15 + + + m + + document + + querySelectorAll + 9 + + + #f + + document + + getElementById + 5 + + + #a + + document + + getElementById + 5 + + + #r + + document + + getElementById + 5 + + + * + + domElement + div.vad-top-titre + + +
    + +
    + + + + + 1 + + + + +
    +
    +
    + +
    +
    + getElementsByTagName + 5 +
    + + * + + domElement + div[0] + + +
    + +
    + + + + + +
    1
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 5 +
    + + #m + + document + + getElementById + 4 + + + #n + + document + + getElementById + 4 + + + #g + + document + + getElementById + 3 + + + * + + domElement + div.metanav + + + 1 + + + + getElementsByTagName + 3 + + + # + + document + + querySelectorAll + 3 + + + i + + document + + querySelectorAll + 3 + + + #c + + document + + getElementById + 3 + + + #h + + document + + getElementById + 2 + + + * + + domElement + div#pub-droite + + +
    + +
    +
    1
    +
    +
    +
    + +
    +
    + getElementsByTagName + 2 +
    + + #l + + document + + getElementById + 2 + + + * + + domElement + div#menu + + +
    1
    + +
    +
    + getElementsByTagName + 2 +
    + + * + + domElement + div.jspContainer + + +
    + +
    +
    +
    +
    + +
  • + + + 1 + + +
  • +
    +
    +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 2 +
    + + * + + domElement + div.jspContainer + + +
    + +
    +
    +
    +
    + +
  • + + + 1 + + +
  • +
    +
    +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 2 +
    + + * + + domElement + div.jspContainer + + +
    + +
    +
    +
    +
    + +
  • + + + 1 + + +
  • +
    +
    +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 2 +
    + + * + + domElement + div.jspContainer + + +
    + +
    +
    +
    +
    + +
  • + + + 1 + + +
  • +
    +
    +
    +
    +
    +
    +
    + +
    +
    + getElementsByTagName + 2 +
    + + * + + domElement + ul#ui-id-1 + + +
      1
    + +
    +
    + getElementsByTagName + 2 +
    + + d + + domElement + div.metanav + + + 1 + + + + getElementsByTagName + 2 + + + #k + + document + + getElementById + 2 + + + . + + document + + querySelectorAll + 2 + + + h + + document + + getElementsByTagName + 2 + +
    +
    + true + false + 0 + 0 +
    + + 1 + + true + 15 + 7 + 1 + <p>Number of 'scroll' event listeners binded to 'window' or 'document'.</p><p>Asking too much work to the browser on scroll hurts the smoothness of the scroll. Merging all your event listeners into an unique listener can help you factorize their code and reduce their footprint on scroll.</p> + + phantomas + + + 1 + + + + + http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js + 3 + 60453 + f + + + http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js + 3 + 29885 + c + + + http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js + 3 + 94038 + e + + + http://pluzz.francetv.fr/ + 43 + 5833 + onload + + + window + + + + false + false + 100 + 0 + + + 0 + + true + 35 + 20 + 1 + <p>This rule counts the number of DOM-accessing functions calls on a scroll event, such as queries, readings, writings, bindings and jQuery functions.</p><p>Two scroll events are triggered quickly, one after the other, and only the second one is analyzed so throttled functions are ignored.</p><p>One of the main reasons of a poor scrolling experience is when too much JS is executed on each scroll event. Note that some devices such as smartphones and MacBooks send more scroll events than others.</p><p>Reduce the number of DOM accesses inside scroll listeners. Put DOM queries outside them when possible. Use <a href="http://blogorama.nerdworks.in/javascriptfunctionthrottlingan/" target="_blank">throttling or debouncing</a>.</p> + + jsExecutionTransformer + + + + main + + + + + documentScroll + 30893 + domComplete + + true + + + + windowScroll + 30893 + domComplete + + true + + + + false + false + 100 + 0 + + + 0 + + true + 4 + 1 + 0 + <p>Just to let you know there are some errors on the page.</p><p><b>Please note that some errors only occur in the PhantomJS browser, so you might need to double check on other browsers.</b></p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 0 + + true + 10 + 5 + 0 + <p>They slow down the page construction, especially if they are used to insert scripts in the page. Remove them ASAP.</p><p>If you cannot remove them because they come from a third-party script (such as ads), have a look at <a href="https://github.com/krux/postscribe" target="_blank">PostScribe</a>.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 0 + + true + 1 + 1 + 0 + <p>Making an XMLHttpRequest with the <i>async</i> option set to <i>false</i> is deprecated due to the negative effect to performances. The browser's main thread needs to stop everything until the response is received.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 2 + + false + 50 + 10 + 0 + <p>Try to keep your console clean when in production. Debugging is good for development only.</p><p>Writing in the console has a cost, especially when dumping large object variables.</p><p>There is also a problem with Internet Explorer 8, not knowing the console object.</p> + + phantomas + + true + false + 80 + 0 + + + 138 + + true + 700 + 200 + 40 + <p>It is a bad practice because they clutter up the global namespace. If two scripts use the same variable name in the global scope, it can cause conflicts and it is generally hard to debug.</p><p>Global variables also take a (very) little bit longer to be accessed than variables in the local scope of a function.</p> + + phantomas + + + 138 + + $ + $zoneAbroad + AT_click + AT_hit + AudienceScience + CHROMECAST_APPS_ID + CHROMECAST_APP_ID + CLIENT + ChromeCastReceiver + EventEmitter + Handlebars + IMAGES_BASE_URL + Krux + NREUM + OAS_AD + OAS_RICH + OAS_listpos + OAS_sitepage + OAS_url + PlayerSnapshot + Pluzz + PluzzCast + PluzzDiffusionsStorage + RN + RNS + RSVP + RecommandationsHome + RubiconAdServing + SERVER + XMLHttpRequest + Xt_id + Xtconf + Xtcore + __IASVANS + __nr_require + a + asiAdserver + asiPlacements + asiPqTag + attag + autoCompletePluzz + axel + callWs + customRecommandations + data + define + error + form_newsletter_url + ftv_metanav + ftvenShortTitle + ftvi_portail + ftvi_rubrique + ftvi_section + ga + gaData + gaGlobal + gaplugins + getTickerTranche + iframe + inViewport + injectScript + jQuery + lSc + lancerRecherche + lazyLoadLight + lazyload + lzld + miseEnAvant + newrelic + o_ + passBackPos + pluzzBox + pluzzMenu + ref + require + rgb2hex + rp_account_config + rp_onUserIdLoaded_369300_10 + rp_onUserIdLoaded_57136_15 + rp_onUserIdLoaded_64921_15 + rp_onUserIdLoaded_82932_10 + rp_requests + rp_smartfile + rpx_params + rubicon_ad + rubicon_cb + rubicon_creative + rubicon_rurl + rubicon_tag_code + tl_sync + tldc + wck + x + xd + xt1 + xt16 + xt21 + xt29 + xt44 + xt7 + xt8 + xt8b + xt9 + xtLogDom + xt_ParseUrl + xt_ParseUrl3 + xt_ac + xt_ad + xt_adc + xt_addProduct + xt_addProduct_load + xt_addProduct_v2 + xt_addchain + xt_adi + xt_an + xt_click + xt_form + xt_med + xt_multc + xt_mvt + xt_rd + xt_rm + xtdi + xtf1 + xtf3 + xtfirst + xtidpg + xtn2 + xtnv + xtp + xtpage + xtparam + xtsd + xtsite + xttredir + xtv + xtvid + xw + + + true + false + 39 + 0 + + + 2 + + true + 2 + 2 + 1 + <p>jQuery is a heavy library. You should <b>never</b> load jQuery more than once on the same page.</p> + + phantomas + + + 2 + + v2.1.4 + v1.8.3+1 + + + true + true + 0 + 0 + + + 36 + + false + 180 + 100 + 1 + <p>This metric counts the number of jQuery functions called on an empty jQuery object. The call was useless.</p><p>This can be helpful to detect dead or unused code.</p> + + jsExecutionTransformer + + true + false + 65 + 0 + + + 30 + + false + 180 + 100 + 1 + <p>This is the number of events that are bound with the .bind() or the .on() function without using <a href="https://learn.jquery.com/events/event-delegation/" target="_blank">event delegation</a>.</p><p>This means jQuery binds each element contained in the object one by one. This is bad for performance.</p> + + jsExecutionTransformer + + true + false + 71 + 0 + + + 0 + + true + 20 + 1 + 0 + <p>Yellow Lab Tools failed to parse a CSS file. I doubt the problem comes from the css parser.</p><p>Maybe a <a href="http://jigsaw.w3.org/css-validator" target="_blank">CSS validator</a> can help you.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 1379 + + true + 4500 + 3000 + 750 + <p>Having a huge number of CSS rules hurts performances. If the number of CSS rules is higher than the number of DOM elements, there is clearly a problem.</p><p>Huge stylesheets generally occur when the different pages of a website load all the CSS, concatenated in a single stylesheet, even if a large part of the rules are page-specific. Solution is to create one main CSS file with global rules and one custom file per page.</p> + + phantomas + + + 5 + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1064 + + + http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css + 17 + + + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 86 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 106 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 106 + + + + true + false + 72 + 0 + + + 107 + + true + 2000 + 600 + 0 + <p>Complex selectors are CSS selectors with 4 or more expressions, like "#header ul li .foo".</p><p>They are adding more work for the browser, and this could be avoided by simplifying selectors. The <a href="http://getbem.com" target="_blank">B.E.M. methodology</a> is an useful way to simplify your CSS.</p> + + phantomas + + + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 23 + + + #old-browser-popin .browsers>.browser>.logo + 4 + 25577 + + + #old-browser-popin .browsers>.browser>a + 4 + 25679 + + + #old-browser-popin .browsers>.browser>a:hover + 4 + 25799 + + + #old-browser-popin .browsers>.browser>.chrome + 4 + 25871 + + + #old-browser-popin .browsers>.browser>.firefox + 4 + 25999 + + + #old-browser-popin .browsers>.browser>.msie + 4 + 26129 + + + #old-browser-popin .browsers>.browser>.opera + 4 + 26253 + + + #old-browser-popin .browsers>.browser>.safari + 4 + 26379 + + + .retroGuide .guide-vignette:hover .video-description .video-heure + 4 + 38143 + + + .retroGuide .guide-vignette:hover .video-description .video-titre + 4 + 38143 + + + .retroGuide .guide-vignette:hover .video-description .ellipsis-text + 4 + 38286 + + + .bloc-voir-aussi-franceinfo .voiraussi-element .voiraussi-infos .title + 4 + 42105 + + + #diffusion-info .diffusion-paragraphe>span>span + 4 + 44318 + + + .aide-menu .liste>li>a.selected + 4 + 58851 + + + .aide-menu .liste>li>a:hover + 4 + 58851 + + + .aide-menu .liste>li>a + 4 + 59005 + + + .bloc-color .box-collapse>li>div.box-title + 4 + 60216 + + + .bloc-color .box-collapse>li>div.box-title:before + 4 + 60317 + + + .bloc-color .box-collapse>li li + 4 + 61011 + + + .annexe-plus-regardes a:hover .vignette-plusregardes .vignette-filtre + 4 + 62865 + + + .annexe-plus-regardes a:hover .vignette-plusregardes .sprite-play.vignette-play + 4 + 62948 + + + #accessibilite-inner .keyboard>div span + 4 + 66261 + + + #accessibilite-inner .keyboard>div span:last-of-type + 4 + 66415 + + + + + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 2 + + + #footer-transverse #ft-top-link li.ft-applications a + 1 + 5580 + + + #footer-transverse #ft-top-link li#ft-applications a + 1 + 5664 + + + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 82 + + + .metanav .chaines li a + 1 + 1973 + + + .metanav .chaines li.la1ere a + 1 + 2085 + + + .metanav .chaines li.france2 a + 1 + 2147 + + + .metanav .chaines li.france3 a + 1 + 2211 + + + .metanav .chaines li.france4 a + 1 + 2275 + + + .metanav .chaines li.france5 a + 1 + 2339 + + + .metanav .chaines li.franceo a + 1 + 2403 + + + .metanav .chaines li.current a + 1 + 2468 + + + .metanav .chaines li a:hover + 1 + 2468 + + + .metanav .chaines li.la1ere.current a + 1 + 2586 + + + .metanav .chaines li.la1ere a:hover + 1 + 2586 + + + .metanav .chaines li.france2.current a + 1 + 2692 + + + .metanav .chaines li.france2 a:hover + 1 + 2692 + + + .metanav .chaines li.france3.current a + 1 + 2801 + + + .metanav .chaines li.france3 a:hover + 1 + 2801 + + + .metanav .chaines li.france4.current a + 1 + 2910 + + + .metanav .chaines li.france4 a:hover + 1 + 2910 + + + .metanav .chaines li.france5.current a + 1 + 3019 + + + .metanav .chaines li.france5 a:hover + 1 + 3019 + + + .metanav .chaines li.franceo.current a + 1 + 3128 + + + .metanav .chaines li.franceo a:hover + 1 + 3128 + + + .metanav .pluzz .content li + 1 + 4032 + + + .metanav .info .content li + 1 + 4032 + + + .metanav .pluzz .content li:hover + 1 + 4098 + + + .metanav .info .content li:hover + 1 + 4098 + + + .metanav .pluzz .content a + 1 + 4188 + + + .metanav .pluzz .content a:hover + 1 + 4326 + + + .metanav .info .content a:hover + 1 + 4326 + + + .metanav .transverse li.pluzz a:hover + 1 + 4419 + + + .metanav .info .content a + 1 + 5085 + + + .metanav .transverse li.sport a + 1 + 5222 + + + .metanav .transverse li.sport.current a + 1 + 5348 + + + .metanav .transverse li.sport a:hover + 1 + 5348 + + + .metanav .content #KitSso_loginLink a + 1 + 7124 + + + .metanav ul.sso_link_list li:hover a + 1 + 7627 + + + .metanav .newsletter a span + 1 + 8285 + + + .metanav .newsletter a:hover span + 1 + 8354 + + + .metanav .confidentialite.newsletter_link.sso_connect a:hover span + 1 + 9302 + + + .metanav .confidentialite.newsletter_link.sso_disconnect a:hover span + 1 + 9302 + + + .metanav .confidentialite a span + 1 + 9450 + + + .metanav .confidentialite a:hover span + 1 + 9509 + + + .metanav .chaines li a + 1 + 1973 + + + .metanav .chaines li.la1ere a + 1 + 2085 + + + .metanav .chaines li.france2 a + 1 + 2147 + + + .metanav .chaines li.france3 a + 1 + 2211 + + + .metanav .chaines li.france4 a + 1 + 2275 + + + .metanav .chaines li.france5 a + 1 + 2339 + + + .metanav .chaines li.franceo a + 1 + 2403 + + + .metanav .chaines li.current a + 1 + 2468 + + + .metanav .chaines li a:hover + 1 + 2468 + + + .metanav .chaines li.la1ere.current a + 1 + 2586 + + + .metanav .chaines li.la1ere a:hover + 1 + 2586 + + + .metanav .chaines li.france2.current a + 1 + 2692 + + + .metanav .chaines li.france2 a:hover + 1 + 2692 + + + .metanav .chaines li.france3.current a + 1 + 2801 + + + .metanav .chaines li.france3 a:hover + 1 + 2801 + + + .metanav .chaines li.france4.current a + 1 + 2910 + + + .metanav .chaines li.france4 a:hover + 1 + 2910 + + + .metanav .chaines li.france5.current a + 1 + 3019 + + + .metanav .chaines li.france5 a:hover + 1 + 3019 + + + .metanav .chaines li.franceo.current a + 1 + 3128 + + + .metanav .chaines li.franceo a:hover + 1 + 3128 + + + .metanav .pluzz .content li + 1 + 4032 + + + .metanav .info .content li + 1 + 4032 + + + .metanav .pluzz .content li:hover + 1 + 4098 + + + .metanav .info .content li:hover + 1 + 4098 + + + .metanav .pluzz .content a + 1 + 4188 + + + .metanav .pluzz .content a:hover + 1 + 4326 + + + .metanav .info .content a:hover + 1 + 4326 + + + .metanav .transverse li.pluzz a:hover + 1 + 4419 + + + .metanav .info .content a + 1 + 5085 + + + .metanav .transverse li.sport a + 1 + 5222 + + + .metanav .transverse li.sport.current a + 1 + 5348 + + + .metanav .transverse li.sport a:hover + 1 + 5348 + + + .metanav .content #KitSso_loginLink a + 1 + 7124 + + + .metanav ul.sso_link_list li:hover a + 1 + 7627 + + + .metanav .newsletter a span + 1 + 8285 + + + .metanav .newsletter a:hover span + 1 + 8354 + + + .metanav .confidentialite.newsletter_link.sso_connect a:hover span + 1 + 9302 + + + .metanav .confidentialite.newsletter_link.sso_disconnect a:hover span + 1 + 9302 + + + .metanav .confidentialite a span + 1 + 9450 + + + .metanav .confidentialite a:hover span + 1 + 9509 + + + + + + true + false + 82 + 0 + + + 73 + + true + 400 + 150 + 30 + <p>This is the number of different colors defined in CSS.</p><p>Your CSS will be easier to maintain if you keep a small color set.</p> + + phantomas + + + 73 + + + #ffffff + 108 + + + #000000 + 64 + + + #262626 + 37 + + + #7a7a7a + 29 + + + #c4c4c4 + 19 + + + #333333 + 17 + + + #323131 + 16 + + + #515151 + 15 + + + #0076b9 + 14 + + + #eaeaea + 12 + + + #1d1d1d + 11 + + + #404040 + 10 + + + #636363 + 9 + + + #111111 + 8 + + + #555555 + 8 + + + #d9d9d9 + 8 + + + rgba(0,0,0,0.2) + 8 + + + #f87c00 + 7 + + + #97488a + 7 + + + #f5c22f + 7 + + + #e80000 + 7 + + + #87c000 + 7 + + + rgba(50,49,49,0.54) + 6 + + + rgba(50,49,49,0.81) + 6 + + + rgba(50,49,49,0.25) + 6 + + + rgba(50,49,49,0.13) + 6 + + + #cccccc + 6 + + + #cfcfcf + 3 + + + rgba(0,0,0,0.3) + 3 + + + rgba(50,49,49,0.91) + 3 + + + #e5eb7c + 3 + + + rgba(50,49,49,0) + 3 + + + rgba(50,49,49,0.03) + 3 + + + rgba(50,49,49,0.94) + 3 + + + rgba(50,49,49,0.96) + 3 + + + #a0a0a0 + 3 + + + #434343 + 2 + + + rgba(0,0,0,0.5) + 2 + + + #2a2a2a + 2 + + + rgba(255,255,255,0.7) + 2 + + + rgba(0,0,0,0.7) + 2 + + + #fbbebd + 2 + + + #f76b68 + 2 + + + #f7f7f7 + 2 + + + #888888 + 2 + + + #3a3a3a + 2 + + + rgba(0,0,0,0.8) + 2 + + + #acacac + 2 + + + #454646 + 2 + + + #c7111d + 2 + + + rgba(255,255,255,0.3) + 1 + + + #bbbbdd + 1 + + + rgba(255,255,255,0.32) + 1 + + + #ffc300 + 1 + + + #213231 + 1 + + + rgba(255,255,255,0.16) + 1 + + + #6d6d68 + 1 + + + #999999 + 1 + + + #7b7b7b + 1 + + + #666666 + 1 + + + #e6e6e6 + 1 + + + rgba(85,85,85,0.7) + 1 + + + #bbbbbb + 1 + + + #555454 + 1 + + + #eeeef4 + 1 + + + rgba(0,0,0,0.15) + 1 + + + #454545 + 1 + + + #cecdcd + 1 + + + #50506d + 1 + + + #003231 + 1 + + + #80808d + 1 + + + #ddddee + 1 + + + #898989 + 1 + + + + true + false + 64 + 0 + + + 10 + + true + 80 + 40 + 0 + <p>This is the list of colors found in the stylesheets, that are very close to each other. The eye can barely see the difference.</p><p>Use this list to reduce the number of colors in your palette, it will be easier to maintain.</p> + + colorDiff + + + 10 + + + #7a7a7a + #7b7b7b + true + + + #323131 + #333333 + true + + + #eaeaea + #e6e6e6 + false + + + #cccccc + #cfcfcf + false + + + #cccccc + #cecdcd + false + + + #cfcfcf + #cecdcd + false + + + #898989 + #888888 + true + + + #555454 + #555555 + true + + + #454646 + #454545 + true + + + #454545 + #434343 + true + + + + true + false + 75 + 0 + + + 3 + + true + 60 + 40 + 6 + <p>This is the number of different breakpoints found in the stylesheets' media queries.</p><p>Please note this rule is based on <i>min-width</i>, <i>max-width</i>, <i>min-device-width</i> and <i>max-device-width</i> media queries only.</p><p>Your CSS will be easier to maintain if you keep a reasonable number of breakpoints. Try to make a fluid design - using percents - to avoid the creation of numerous breakpoints.</p> + + mediaQueriesChecker + + + + 860px + 1 + 860 + + + 1024px + 1 + 1024 + + + 980px + 2 + 980 + + + false + false + 100 + 0 + + + 5 + + true + 1000 + 200 + 25 + <p>This is the number of CSS rules inside media queries that address small screens.</p><p>The common good practice, when creating a responsive website, is to write it "mobile-first". More explanation in <a href="http://www.sitepoint.com/introduction-mobile-first-media-queries" target="_blank">this great article</a>.</p> + + mediaQueriesChecker + + + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 2 + + + screen and (max-width:860px) + 2 + 1 + 3443 + + + only screen and (max-width:1024px) + 1 + 4 + 6505 + + + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 2 + + + screen and (max-width:980px) + 1 + 1 + 506 + + + screen and (max-width:980px) + 1 + 1 + 506 + + + + + + false + false + 100 + 0 + + + 0 + + true + 1 + 1 + 0 + <p>It’s bad for performance to use @import because CSS files don't get downloaded in parallel.</p><p>You should use &lt;link rel='stylesheet' href='a.css'&gt; instead.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 24 + + true + 100 + 50 + 0 + <p>This is when two or more selectors are strictly identical and should be merged.</p> + + phantomas + + + 24 + + + .selectboxit-arrow-container + 2 + + + #regions_DT div.region + 2 + + + .flex-control-nav + 2 + + + .flex-control-nav li + 2 + + + .flex-control-paging li a + 2 + + + .flex-control-paging li a.flex-active + 2 + + + .ui-menu + 2 + + + .ui-menu .ui-menu-item + 2 + + + .jspDrag + 2 + + + .selectboxit-container * + 2 + + + .selectboxit-container .selectboxit-options a, .selectboxit-container span + 2 + + + .selectboxit-container .selectboxit-options + 2 + + + .flexslider + 2 + + + .selectboxit .selectboxit-arrow-container .selectboxit-arrow + 2 + + + .selectboxit-btn + 2 + + + .selectboxit-btn.selectboxit-enabled:focus, .selectboxit-btn.selectboxit-enabled:hover + 2 + + + .selectboxit-list>.selectboxit-focus>.selectboxit-option-anchor + 2 + + + #enReplay + 2 + + + #cboxOverlay + 2 + + + #cboxContent + 2 + + + #cboxLoadedContent + 2 + + + #cboxTitle + 2 + + + #cboxClose, #cboxNext, #cboxPrevious, #cboxSlideshow + 2 + + + #cboxClose + 2 + + + + true + false + 52 + 0 + + + 4 + + true + 120 + 60 + 0 + <p>This is the number of property definitions duplicated within a selector.</p> + + phantomas + + + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + + + background + .flex-control-paging li a + 1 + 2803 + + + border + .selectboxit-list + 4 + 5954 + + + background + #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after + 4 + 16238 + + + width + .sprite-play-regions + 4 + 85469 + + + + + + true + false + 93 + 0 + + + 0 + + true + 100 + 50 + 0 + <p>Very easy to fix: remove all empty rules.</p> + + phantomas + + + + + false + false + 100 + 0 + + + 0 + + true + 20 + 1 + 0 + <p>Such as: expression( document.body.clientWidth > 600 ? "600px" : "auto" )</p><p>This is a bad practice as it slows down browsers. There are some simpler CSS3 methods for doing this.</p> + + phantomas + + + + + false + false + 100 + 0 + + + 27 + + true + 200 + 75 + 0 + <p>It can be useful, but only as a last resort. It is a bad practice because it overrides the normal cascading logic. The more you use !important, the more you need it again to over-override. This conducts to a poor maintainability.</p> + + phantomas + + + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 16 + + + .flex-direction-nav .flex-disabled + opacity + 0 + 1 + 2105 + + + .ui-state-disabled + cursor + default + 4 + 681 + + + .selectboxit-rendering + display + inline-block + 4 + 5139 + + + .selectboxit-rendering + zoom + 1 + 4 + 5170 + + + .selectboxit-rendering + visibility + visible + 4 + 5187 + + + .selectboxit-rendering + position + absolute + 4 + 5216 + + + .selectboxit-rendering + top + -9999px + 4 + 5244 + + + .selectboxit-rendering + left + -9999px + 4 + 5266 + + + #combo-replaySelectBoxIt + width + 119px + 4 + 11028 + + + #cboxCurrent + display + none + 4 + 27636 + + + .fb_iframe_widget>span + vertical-align + top + 4 + 40991 + + + .boutonGooglePlus, .boutonGooglePlus>iframe + width + 68px + 4 + 41063 + + + #player-onEnAParle .loupe + left + 391px + 4 + 46189 + + + #combo-nb-elementsSelectBoxIt + width + 80px + 4 + 47460 + + + #combo-nb-elementsSelectBoxItArrowContainer + width + 40px + 4 + 47836 + + + .formInput input[type=text], .formInput option, .formInput select, .formInput textarea + font-weight + 700 + 4 + 68643 + + + + + http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css + 5 + + + body + position + initial + 1 + 6 + + + .relativeBody .metanav + top + 0 + 1 + 56 + + + .metanav.cnil + top + 53px + 1 + 86 + + + .html-cnil + padding-top + 84px + 1 + 116 + + + .html-cnil-mobile + padding-top + 84px + 1 + 878 + + + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 6 + + + html + padding-top + 31px + 1 + 6 + + + #captureSignInLink + padding + 0 0 0 30px + 1 + 6533 + + + .sso_link_list li a + background + none + 1 + 7458 + + + html + padding-top + 31px + 1 + 6 + + + #captureSignInLink + padding + 0 0 0 30px + 1 + 6533 + + + .sso_link_list li a + background + none + 1 + 7458 + + + + + + true + false + 64 + 0 + + + 3 + + true + 300 + 75 + 0 + <p>What browser do you need to support? Once you've got the answer, take a look at these old rules that pollute your CSS code and remove them.</p><p>IE6:<ul><li>* html</li><li>html > body (everything but IE6)</li></ul><p><p>IE7:<ul><li><b>*</b>height: 123px;</li><li>height: 123px <b>!ie</b>;</li></ul><p><p>IE9:<ul><li>-ms-filter</li><li>progid:DXImageTransform.Microsoft</li></ul></p> + + phantomas + + + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 3 + + + * html .slides + 1 + 837 + <b>* html</b> .slides + IE6 + + + * html .jspCorner + 4 + 2700 + <b>* html</b> .jspCorner + IE6 + + + #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)} + 4 + 16571 + #onglet-inner li.onglet-chaine:after, #onglet-inner li.onglet-home:after {filter: <b>progid:DXImageTransform.Microsoft</b>.gradient(startColorstr='#21323131', endColorstr='#00323131', GradientType=0)} + IE9 + + + + + + true + false + 96 + 0 + + + 39 + + true + 300 + 75 + 0 + <p>Many property prefixes such as -moz- or -webkit- are not needed anymore, or by very few people. Sometimes, they have never even existed. You can remove them or replace them with the non-prefixed version. This will help reducing your stylesheets weight.</p><p>The prefixes database comes from <a href="http://caniuse.com/" target="_blank">Can I Use</a>.</p> + + phantomas + + + 39 + + + -webkit-border-radius + was required by Android Browser 2.1, Chrome 4, iOS Safari 3.2, Safari 4 and earlier + + + .flexslider + 4px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 990 + + + .flex-control-paging li a + 20px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 2864 + + + + + -moz-border-radius + was required by Firefox 3.6 and earlier + + + .flexslider + 4px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1016 + + + .flex-control-paging li a + 20px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 2891 + + + + + -o-border-radius + prefix is no longer supported + + + .flexslider + 4px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1039 + + + .flex-control-paging li a + 20px + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 2915 + + + + + -moz-box-shadow + was required by Firefox 3.6 and earlier + + + .flexslider + 0 1px 4px rgba(0,0,0,.2) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1122 + + + .flex-control-paging li a + inset 0 0 3px rgba(0,0,0,.3) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 3004 + + + .selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled + none + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 3466 + + + .selectboxit-container .selectboxit-options + none + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 3951 + + + .selectboxit-list + 0 5px 10px rgba(0,0,0,.2) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 6031 + + + + + -o-box-shadow + prefix is no longer supported + + + .flexslider + 0 1px 4px rgba(0,0,0,.2) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1163 + + + .flex-control-paging li a + inset 0 0 3px rgba(0,0,0,.3) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 3049 + + + + + -moz-transition + was required by Firefox 15 and earlier + + + .flex-viewport + all 1s ease + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1309 + + + .flex-direction-nav a + all .3s ease + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1734 + + + + + -o-transition + prefix is no longer supported + + + .flex-viewport + all 1s ease + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 1337 + + + + + -webkit-box-shadow + was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier + + + .flex-control-paging li a + inset 0 0 3px rgba(0,0,0,.3) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 1 + 2956 + + + .selectboxit-options .selectboxit-disabled, .selectboxit.selectboxit-disabled + none + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 3442 + + + .selectboxit-container .selectboxit-options + none + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 3927 + + + .selectboxit-list + 0 5px 10px rgba(0,0,0,.2) + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 5986 + + + + + -o-user-select + prefix is no longer supported + + + .selectboxit-container * + none + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 2992 + + + + + -moz-box-sizing + was required by Firefox 28 and earlier + + + .selectboxit-container .selectboxit-options + border-box + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 4 + 3710 + + + #footer-transverse #ft-body-container div, #footer-transverse ul + content-box + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1 + 423 + + + #footer-transverse #ft-body-container + content-box + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1 + 6154 + + + .block.plus .content, .metanav .content #KitSso_loginLink a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 7214 + + + .metanav .newsletter a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 8160 + + + .metanav .confidentialite a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 9172 + + + .block.plus .content, .metanav .content #KitSso_loginLink a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 7214 + + + .metanav .newsletter a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 8160 + + + .metanav .confidentialite a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 9172 + + + + + -webkit-box-sizing + was required by Android Browser 3, Chrome 9, iOS Safari 4.2, Safari 5 and earlier + + + #footer-transverse #ft-body-container div, #footer-transverse ul + content-box + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1 + 392 + + + #footer-transverse #ft-body-container + content-box + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1 + 6123 + + + .block.plus .content, .metanav .content #KitSso_loginLink a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 7183 + + + .metanav .newsletter a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 8129 + + + .metanav .confidentialite a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 9141 + + + .block.plus .content, .metanav .content #KitSso_loginLink a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 7183 + + + .metanav .newsletter a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 8129 + + + .metanav .confidentialite a + content-box + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1 + 9141 + + + + + + true + false + 48 + 0 + + + 0 + + true + 200 + 60 + 0 + <p>This is one way to remove complexity from a CSS rule. Generally, when "body" is specified in a rule it can be removed, because an element is necessarily inside the body.</p> + + phantomas + + + + + false + false + 100 + 0 + + + 4 + + true + 200 + 60 + 0 + <p>Some tags included inside other tags are obvious. For example, when "ul li" is specified in a rule, "ul" can be removed because the "li" tag is nearly always inside an "ul" container (the "ol" container is quite rare). Same thing for "tr td", "select option", ...</p><p>Lowering compexity in CSS selectors can make the page load a little faster.</p> + + phantomas + + + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 4 + + + .metanav ul.sso_link_list li:hover + 1 + 7581 + .metanav <b>ul</b>.sso_link_list <b>li</b>:hover + + + .metanav ul.sso_link_list li:hover a + 1 + 7627 + .metanav <b>ul</b>.sso_link_list <b>li</b>:hover a + + + .metanav ul.sso_link_list li:hover + 1 + 7581 + .metanav <b>ul</b>.sso_link_list <b>li</b>:hover + + + .metanav ul.sso_link_list li:hover a + 1 + 7627 + .metanav <b>ul</b>.sso_link_list <b>li</b>:hover a + + + + + + true + false + 93 + 0 + + + 905000 + + bytes + true + 3145728 + 2097152 + 716800 + <p>The weight is of course very important if you want the page to load fast. Try to stay under 1MB, which is alreay very long to download over a slow connection.</p><p>Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.</p> + + redownload + + + + + 905000 + + + 54212 + + + http://pluzz.francetv.fr/ + 24703 + + + http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? + 820 + + + http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= + 1272 + + + https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? + 873 + + + http://ad2play.ftv-publicite.fr/sticky.ads? + 417 + + + http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph + 2056 + + + http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph + 24071 + + + + + 25627 + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + 18362 + + + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1885 + + + http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css + 940 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 2220 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 2220 + + + + + 463675 + + + http://pluzz.francetv.fr/js/jquery-2.1.4.min.js + 29884 + + + http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js + 30746 + + + http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js + 4137 + + + http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js + 25849 + + + http://static.francetv.fr/js/jquery.metanav-min.js?20161007 + 3128 + + + http://static.francetv.fr/pom/audience/audience.min.js + 2954 + + + http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js + 1273 + + + http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js + 8008 + + + http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js + 1224 + + + http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js + 1721 + + + http://www.google-analytics.com/analytics.js + 11954 + + + http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus + 1999 + + + http://static.francetv.fr/pom/publicite/publicite.min.js + 7684 + + + http://cdn.tradelab.fr/tag/59763bfbc2.js + 5022 + + + http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp + 2162 + + + http://cdn.krxd.net/controltag?confid=J1mXKWTY + 4084 + + + http://cdn.tradelab.fr/seg.js?add=494671 + 1517 + + + http://cdn.tradelab.fr/seg.js?add=577824 + 1517 + + + http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 + 731 + + + http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js + 185349 + + + http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 + 71683 + + + http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste + 20612 + + + http://cdn.krxd.net/controltag/J1mXKWTY.js + 4084 + + + http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n + 6628 + + + http://ads.rubiconproject.com/ad/9585.js + 7381 + + + https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 + 1052 + + + http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync + 766 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 + 298 + + + http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 + 2082 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 + 297 + + + http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 + 2090 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 + 297 + + + http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 + 2103 + + + http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata + 719 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 + 297 + + + http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 + 1553 + + + http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck + 585 + + + http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM + 862 + + + https://js-agent.newrelic.com/nr-998.min.js + 9343 + + + + + 0 + + + + 295958 + + + http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png + 20336 + + + http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png + 6033 + + + http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png + 2715 + + + http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png + 24333 + + + http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png + 4144 + + + http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png + 2557 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg + 14811 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845512/1482930316/200/0/france3/0/img.jpg + 6259 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482930305/200/0/france2/0/img.jpg + 7880 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg + 26035 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg + 11703 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887923/1482930325/200/0/france4/0/img.jpg + 7456 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/151874972/1482923144/200/0/franceo/0/img.jpg + 5813 + + + http://static.francetv.fr/img/metanav/sprite-v1.8.28.png + 13696 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg + 13180 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833042/1482930333/200/0/france5/0/img.jpg + 7306 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg + 29230 + + + https://www.facebook.com/tr?id=882125681855230&ev=PageView + 455 + + + http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 + 373 + + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg + 5615 + + + http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw + 43 + + + http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On + 308 + + + http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg + 39204 + + + https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 + 491 + + + http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y + 343 + + + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 + 783 + + + http://cdn.oas-eu1.adnxs.com/0/default/empty.gif + 778 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + 849 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + 882 + + + http://ib.adnxs.com/seg?add=2491894:59&t=2 + 783 + + + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 + 783 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 + 589 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 751 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 751 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 751 + + + http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n + 615 + + + http://pixel.rubiconproject.com/tap.php + 313 + + + http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg + 33551 + + + http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 + 310 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 310 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w + 309 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 309 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 309 + + + http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 + 313 + + + http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 + 313 + + + http://rc.d.chango.com/m/rc + 35 + + + http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 + 313 + + + http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e + 313 + + + http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 + 313 + + + http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 + 313 + + + + + + 21546 + + + http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff + 21546 + + + + + 43982 + + + http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20 + 43982 + + + + + + + true + false + 86 + 0 + + + 5861 + + bytes + true + 307200 + 122880 + 10240 + <p>This metric measures the number of bytes that could be saved by optimizing images.</p><p>Image optimization is generally one of the easiest way to reduce a page weight, and as a result, the page load time. Don't use Photoshop or other image editing tools, they're not very good for optimization. Use specialized tools such as <a href="https://kraken.io/" target="_blank">Kraken.io</a> or the excellent <a href="https://imageoptim.com/" target="_blank">ImageOptim</a> on Mac. For SVG images, you can use <a href="https://jakearchibald.github.io/svgomg/" target="_blank">SVGOMG</a></p><p>The tools in use in YellowLabTools are not set to their maximum optimization power (JPEG quality 85), so you might be able to compress even more!</p><p>Please note that Yellow Lab Tools' engine (PhantomJS) is not compatible with image srcset (unless you use a polyfill). This can lead to incorrect page weight.</p> + + redownload + + + + + 5861 + + + http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png + 2416 + false + + + 1084 + + 1332 + + + http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png + 2259 + false + + + 1335 + + 924 + + + http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg + 33274 + false + + + + 29669 + 3605 + + + + + false + false + 100 + 0 + + + 10301 + + bytes + true + 153600 + 81920 + 5125 + <p>Measures the number of bytes that could be saved by compressing file transfers.</p><p>Gzip is a powerfull weight reducer and should be enabled on text-based assets in your server's configuration. Note that gzipping small files (< 1 KB) is arguable, and that some assets such as images should not be gzipped as they are already compressed. <a href="https://gist.github.com/gmetais/971ce13a1fbeebd88445" target="_blank">Here</a> is a list of Content-Types that should be gzipped.</p> + + redownload + + + + + 10301 + + + http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus + 1720 + 533 + 1187 + + + http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp + 1883 + 751 + 1132 + + + http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n + 6039 + 1358 + 4681 + + + http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 + 1712 + 809 + 903 + + + http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 + 1720 + 812 + 908 + + + http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 + 1732 + 846 + 886 + + + http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 + 1182 + 578 + 604 + + + + + true + false + 93 + 0 + + + 0 + + bytes + true + 122880 + 61440 + 5125 + <p>This is the weight that could be saved if all text resources were correctly minified.</p><p>The tools in use here are <b>UglifyJS</b>, <b>clean-css</b> and <b>HTMLMinifier</b>. These tools are so good that some of your minified files can be marked as unminified. Change your tool it this happens :)</p><p>The gains of minification are generally small, but the impact can be high when these text files are loaded on the critical path.</p> + + redownload + + + + + 0 + + + + false + false + 100 + 0 + + + 143 + + true + 180 + 100 + 15 + <p>This is one of the most important performance rule. Every request is slowing down the page loading.</p><p>There are several technics to reduce their number:<ul><li>Concatenate JS files</li><li>Concatenate CSS files</li><li>Embed or inline small JS or CSS files in the HTML</li><li>Create sprites</li><li>Base64 encode small images in HTML or stylesheets</li><li>Use lazyloading for images</li></ul></p> + + redownload + + + + + 143 + + + http://pluzz.francetv.fr/ + http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AEAAAAQAI~&jid=1668680996&cid=993101290.1482938593&tid=UA-12822736-1&_r=1&z=1712793791 + http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg + http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=494671&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F + http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=seg&uuid2=$UID&sid=577824&val=null&fp=0&advid=94597&isregen=0&ua=Mozilla%252F5.0%2520(Windows%2520NT%25206.1)%2520AppleWebKit%252F537.36%2520(KHTML%252C%2520like%2520Gecko)%2520YLT%2520Chrome%252F27.0.1453.110%2520Safari%252F537.36&ur=http%253A%252F%252Fpluzz.francetv.fr%252F + http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? + http://cdn.krxd.net/partnerjs/xdi/proxy.c543f8d81df217d079ec9e7171ec89b1.html#!kxcid=J1mXKWTY&kxt=http%3A%2F%2Fpluzz.francetv.fr&kxcl=cdn&kxp= + http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D494671%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F + http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dseg%26uuid2%3D%24UID%26sid%3D577824%26val%3Dnull%26fp%3D0%26advid%3D94597%26isregen%3D0%26ua%3DMozilla%25252F5.0%252520%28Windows%252520NT%2525206.1%29%252520AppleWebKit%25252F537.36%252520%28KHTML%25252C%252520like%252520Gecko%29%252520YLT%252520Chrome%25252F27.0.1453.110%252520Safari%25252F537.36%26ur%3Dhttp%25253A%25252F%25252Fpluzz.francetv.fr%25252F + https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? + http://ib.adnxs.com/seg?add=577824&t=2 + http://ib.adnxs.com/getuid?//its.tradelab.fr/?type=tlsync&uuid2=$UID&callback=tl_sync + http://ib.adnxs.com/bounce?%2Fgetuid%3F%2F%2Fits.tradelab.fr%2F%3Ftype%3Dtlsync%26uuid2%3D%24UID%26callback%3Dtl_sync + http://ib.adnxs.com/seg?add=494671&t=2 + http://cm.g.doubleclick.net/pixel?google_nid=stickyxchange_dbm&google_cm=&google_sc + https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm + https://cm.g.doubleclick.net/pixel?google_nid=tradelab_dmp&google_cm + http://ad2play.ftv-publicite.fr/sticky.ads? + http://ib.adnxs.com/getuid?http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D209%26userId%3D$UID + http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/19915&geo=au&co=ph + http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?pc=9585/78422&geo=au&co=ph + http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D109108%26nid%3D3876%26put%3D$UID%26expires%3D30 + http://ib.adnxs.com/getuidnb?http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D4894%26nid%3D1986%26put%3D$UID%26expires%3D30 + http://match.adsrvr.org/track/cmf/rubicon + http://match.adsrvr.org/track/cmb/rubicon? + + + http://pluzz.francetv.fr/css/build/styles.min.eb5b6462850c036a.css + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + + + http://pluzz.francetv.fr/js/jquery-2.1.4.min.js + http://pluzz.francetv.fr/js/build/compiled-jquery.b99b3b9aaf8819e2.js + http://pluzz.francetv.fr/js/build/compiled-pluzz-home.2182f9a52a297333.js + http://pluzz.francetv.fr/js/build/compiled-pluzz.5e83fec411afa602.js + http://static.francetv.fr/js/jquery.metanav-min.js?20161007 + http://static.francetv.fr/pom/audience/audience.min.js + http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js + http://static.francetv.fr/pom/xiti/xtcore-4.6.2.js + http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js + http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js + http://www.google-analytics.com/analytics.js + http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus + http://static.francetv.fr/pom/publicite/publicite.min.js + http://cdn.tradelab.fr/tag/59763bfbc2.js + http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp + http://cdn.krxd.net/controltag?confid=J1mXKWTY + http://cdn.tradelab.fr/seg.js?add=494671 + http://cdn.tradelab.fr/seg.js?add=577824 + http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 + http://staticftv-a.akamaihd.net/player/jquery.player.7-95280c902d21537fc6488d546f04da54.js + http://cdn.krxd.net/ctjs/controltag.js.65cb90ab31cdb5cf32ec075000ceff37 + http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste + http://cdn.krxd.net/controltag/J1mXKWTY.js + http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n + http://ads.rubiconproject.com/ad/9585.js + https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 + http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 + http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 + http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 + http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 + http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 + http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 + http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck + http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM + https://js-agent.newrelic.com/nr-998.min.js + + + + http://pluzz.francetv.fr/img/sprite-sprite.6c0defb8c4772065.png + http://pluzz.francetv.fr/img/vignette/vignette_franceinfo_200.1615dd925bdae060.png + http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png + http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png + http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png + http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845512/1482930316/200/0/france3/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839887/1482930305/200/0/france2/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833017/1482892824/480/10/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150887923/1482930325/200/0/france4/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/151874972/1482923144/200/0/franceo/0/img.jpg + http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 + http://static.francetv.fr/img/metanav/sprite-v1.8.28.png + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150833042/1482930333/200/0/france5/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839885/1482922464/480/0/0/0/img.jpg + https://www.facebook.com/tr?id=882125681855230&ev=PageView + http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg + http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw + http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On + http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg + https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 + http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 + http://cdn.oas-eu1.adnxs.com/0/default/empty.gif + http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + http://ib.adnxs.com/seg?add=2491894:59&t=2 + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 + http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + http://beacon.krxd.net/pixel.gif?source=smarttag&fired=user_data_timeout&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=1864&t_content_ready=7058&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=false&store_user_after=rej6fgpic&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2CNaN + http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n + http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D + http://pixel.rubiconproject.com/tap.php + http://boa-pluzz.francetelevisions.fr/data/autopromo/73_bandeau_1479293843.1944.jpg + http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + http://sync.mathtag.com/sync/img?mt_exid=9 + http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 + http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 + http://rc.d.chango.com/m/rc + http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 + http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e + http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 + http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 + + + + + true + false + 0 + 0 + + + 46 + + true + 50 + 25 + 10 + <p>For each domain met, the browser needs to make a DNS look-up, which is slow. Avoid having to many different domains and the page should render faster.</p><p>By the way, domain sharding is not a good practice anymore.</p> + + phantomas + + + 46 + + + ib.adnxs.com + 14 + + + refonte.webservices.francetelevisions.fr + 11 + + + pluzz.francetv.fr + 10 + + + newsletters.francetv.fr + 9 + + + ads.stickyadstv.com + 9 + + + static.francetv.fr + 7 + + + its.tradelab.fr + 7 + + + pixel.rubiconproject.com + 7 + + + cdn.krxd.net + 5 + + + gum.criteo.com + 4 + + + optimized-by.rubiconproject.com + 4 + + + dt.adsafeprotected.com + 4 + + + www.google-analytics.com + 3 + + + cdn.tradelab.fr + 3 + + + pub.ftv-publicite.fr + 3 + + + cm.g.doubleclick.net + 3 + + + api.lereferentiel.francetv.fr + 2 + + + logc238.xiti.com + 2 + + + pix04.revsci.net + 2 + + + beacon.krxd.net + 2 + + + sync.mathtag.com + 2 + + + tap2-cdn.rubiconproject.com + 2 + + + pixel.adsafeprotected.com + 2 + + + token.rubiconproject.com + 2 + + + match.adsrvr.org + 2 + + + rub.pxl.ace.advertising.com + 2 + + + googleads.g.doubleclick.net + 1 + + + www.facebook.com + 1 + + + pq-direct.revsci.net + 1 + + + staticftv-a.akamaihd.net + 1 + + + www.francetvinfo.fr + 1 + + + 4610658.fls.doubleclick.net + 1 + + + stats.g.doubleclick.net + 1 + + + 5110145.fls.doubleclick.net + 1 + + + pluzz.webservices.francetelevisions.fr + 1 + + + www.google.com.ph + 1 + + + ads.rubiconproject.com + 1 + + + cdn.oas-eu1.adnxs.com + 1 + + + lpm-francetv.nuggad.net + 1 + + + ad2play.ftv-publicite.fr + 1 + + + rtd.tubemogul.com + 1 + + + sync.adaptv.advertising.com + 1 + + + tap.rubiconproject.com + 1 + + + boa-pluzz.francetelevisions.fr + 1 + + + js-agent.newrelic.com + 1 + + + rc.d.chango.com + 1 + + + + true + false + 0 + 0 + + + 0 + + true + 1 + 1 + 0 + <p>404 errors are never cached, so each time a page ask for it, it hits the server. Even if it is behind a CDN or a reverse-proxy cache.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 2 + + true + 20 + 7 + 0 + <p>This counts the number of requests not keeping the connection alive (specifying "Connection: close" in the response headers). It is only counting a request if it is followed by another request on the same domain.</p><p>This is slowing down the next request, because the brower needs to open a new connection to the server, which means an additional round-trip.</p><p>Correct the problem by setting a Keep-Alive header on the guilty server.</p> + + phantomas + + + 2 + + http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref= + http://pixel.adsafeprotected.com/jload?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20 + + + true + false + 71 + 0 + + + 3 + + true + 15 + 5 + 0 + <p>This is the number of requests that could be avoided, because of downloaded files that have the same content but are loaded from different URLs.</p><p>Try to load them from the same URL.</p> + + redownload + + + 3 + 3 + + + 3287 + + http://cdn.krxd.net/controltag?confid=J1mXKWTY + http://cdn.krxd.net/controltag/J1mXKWTY.js + + + + 1148 + + http://cdn.tradelab.fr/seg.js?add=494671 + http://cdn.tradelab.fr/seg.js?add=577824 + + + + 177 + + http://4610658.fls.doubleclick.net/activityi;src=4610658;type=invmedia;cat=k1xypqoz;ord=1? + https://5110145.fls.doubleclick.net/activityi;src=5110145;type=invmedia;cat=9ticfyvg;ord=1? + + + + + true + false + 40 + 0 + + + 0 + + true + 5 + 1 + 0 + <p>List of GET requests that respond with an empty body. These are probably the easiest requests to remove.</p> + + redownload + + + 0 + + + false + false + 100 + 0 + + + 53 + + true + 50 + 30 + 4 + <p>List of all requests that are less than 2 KB. Try to merge them with other files.</p> + + redownload + + + + + 53 + + + + http://newsletters.francetv.fr/footer-transverse/css/footer-min-v1.0.28.css + 1537 + + + http://newsletters.francetv.fr/cnil/css/cnil-min-v20140904.css + 594 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1828 + + + http://static.francetv.fr/css/metanav/default-min-v1.8.39.css + 1828 + + + + + http://newsletters.francetv.fr/footer-transverse/js/jquery.xdomainrequest.min.js + 914 + + + http://newsletters.francetv.fr/footer-transverse/js/jquery.footer-transverse-min-v1.0.23.js + 866 + + + http://newsletters.francetv.fr/cnil/js/cnil-min-v20160108.js + 1360 + + + http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus + 1720 + + + http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp + 1883 + + + http://cdn.tradelab.fr/seg.js?add=494671 + 1148 + + + http://cdn.tradelab.fr/seg.js?add=577824 + 1148 + + + http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 + 159 + + + https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 + 384 + + + http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync + 53 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 + 62 + + + http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 + 1712 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 + 61 + + + http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 + 1720 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 + 61 + + + http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 + 1732 + + + http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata + 169 + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 + 61 + + + http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 + 1182 + + + http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck + 70 + + + http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM + 274 + + + + + https://www.facebook.com/tr?id=882125681855230&ev=PageView + 44 + + + http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 + 35 + + + http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On + 43 + + + https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 + 35 + + + http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y + 42 + + + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 + 43 + + + http://cdn.oas-eu1.adnxs.com/0/default/empty.gif + 43 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + 43 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + 43 + + + http://ib.adnxs.com/seg?add=2491894:59&t=2 + 43 + + + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 + 43 + + + http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 + 43 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 43 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 43 + + + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + 43 + + + http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n + 43 + + + http://pixel.rubiconproject.com/tap.php + 42 + + + http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 + 43 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 43 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w + 43 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 43 + + + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + 43 + + + http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 + 42 + + + http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 + 42 + + + http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 + 42 + + + http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e + 42 + + + http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 + 42 + + + http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 + 42 + + + + + + true + true + 0 + -7 + + + 6 + + true + 30 + 12 + 1 + <p>This is the number of images displayed below the fold that could be lazy-loaded. This is an excellent way to accelerate the loading time of an heavy page.</p><p>I recommend using <a href="https://github.com/vvo/lazyload" target="_blank">this lazyloader</a>.</p> + + phantomas + + + 6 + + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150839880/1482860712/300/10/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150837065/1482892600/300/0/0/0/img.jpg + http://refonte.webservices.francetelevisions.fr/image/referentiel_emissions/150841015/1482892751/300/0/0/0/img.jpg + http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png + http://www.francetvinfo.fr/image/759xum9v4-c2d3/640/360/11491369.jpg + http://pluzz.francetv.fr/image/referentiel_emissions/150845491/1482892599/200/10/france3/0/img.jpg + + + true + false + 55 + 0 + + + 0 + + true + 30 + 12 + 1 + <p>List of all images that have a display:none property, or one of their parents. These images are loaded by the browser even if they're not visible. You might be able to find a way to lazy-load them, only when they get visible.</p><p>As images displayed in 1x1 pixels tend to be trackers, they are excluded from this rule.</p> + + phantomas + + + 0 + + + false + false + 100 + 0 + + + 1 + + true + 7 + 5 + 1 + <p>This is the number of custom web fonts loaded on the page.</p><p>Webfonts are beautiful, but heavy. You should keep their number as low as possible.</p> + + redownload + + + 1 + + + http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff + 21240 + + + + false + false + 100 + 0 + + + 0 + + true + bytes + 204800 + 102400 + 0 + <p>This metric is the sum of all bytes above 40KB in loaded fonts. Over this size, the font is probably not optimized for the web.</p><p>It can be a compresson issue, a font that contains too many glyphs or a font with complex shapes.</p><p>Sorry, Yellow Lab Tools is not yet compatible with the WOFF2 font format that generates 20-30% smaller fonts. You can proceed to a manual verification on a modern browser.</p> + + redownload + + + 0 + + + http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff + 21240 + 220 + 23.9 + + + 0 + + false + false + 100 + 0 + + + 0 + + true + 12 + 8 + 0 + <p>This metric counts the number of unused Unicode ranges inside each font. For example, one font could include Cyrillic glyphs but none of them are used on the page.</p><p>Because of technical limitations, Yellow Lab Tools checks each font against the glyphs of the entire page. As a result, estimated use is >= to reality. For example, if you read that 10 glyphs are "possibly used", it means that these 10 glyphs are used on the page but nothing guaranties that they are displayed using this font.</p><p>Tools such as <a href="https://www.fontsquirrel.com/tools/webfont-generator" target="_blank">Font Squirrel</a> can remove some unicode ranges from a font.</p><p>In the case of an icon font, make sure you only keep the icons that are used on the website and to remove the others. Several tools are able to extract SVG images from a font, then some other tools can generate a font from the SVGs you want to keep.</p> + + redownload + + + 0 + + + http://pluzz.francetv.fr/fonts/ftvheldustry-thin2011-webfont.woff + 21240 + false + + + Basic Latin + 32 + 127 + !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ + 72 + 0.9895833333333334 + + + Latin-1 Supplement + 160 + 255 +  ¡¢£¤¥¦§¨©ª«¬­®¯°±´µ¶·¸º»¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖרÙÚÛÜßàáâãäåæçèéêëìíîïñòóôõö÷øùúûüÿ + 14 + 0.875 + + + Latin Extended + 256 + 591 + ŒœŸ + 0 + 0.008928571428571428 + + + Others + ˆ˜           ‐‑‒–—‘’‚“”„•… ‹› €™◼fifl + 2 + + + + + + false + false + 100 + 0 + + + No + 0 + true + false + 0 + + + <p>HTTP/2 is the latest version of the HTTP protocol and is designed to optimize load speed. SPDY is deprecated but still very well supported.</p><p>The latest versions of all major browsers are now compatible. The difficulty is on the server side, where technologies are not quite ready yet.</p> + + + + 32 + + true + 25 + 12 + 0 + <p>Counts responses with caching disabled (max-age=0)</p><p>Fix immediatly if on static assets.</p> + + phantomas + + + 32 + + http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1042195538/?value=0&guid=ON&script=0 + https://www.facebook.com/tr?id=882125681855230&ev=PageView + http://www.google-analytics.com/r/collect?v=1&_v=j47&a=1310112829&t=pageview&_s=1&dl=http%3A%2F%2Fpluzz.francetv.fr%2F&ul=fr-fr&de=UTF-8&dt=francetv%20pluzz%20%3A%20programmes%20de%20France%20T%C3%A9l%C3%A9visions%20en%20direct%20ou%20en%20replay%20!&sd=24-bit&sr=1366x768&vp=1366x768&je=0&_u=AECAAAQAI~&jid=399749033&cid=993101290.1482938593&tid=UA-38414326-1&_r=1&z=264166808 + http://pq-direct.revsci.net/pql?placementIdList=CGGoFv,fKXTTz,udrMUD,7KLJcc,1ykSjt,WUuEkF,uKgaD6&cb=1482938592610 + https://stats.g.doubleclick.net/r/collect?v=1&aip=1&t=dc&_r=3&tid=UA-12822736-1&cid=993101290.1482938593&jid=1668680996&_v=j47&z=1712793791 + http://www.google.com.ph/ads/user-lists/1042195538/?script=0&random=3289990118&fpvtc=/1042195538/%3Fvalue%3D0%26guid%3DON%26script%3D0%26random%3D1516301480&ipr=y + http://pub.ftv-publicite.fr/4/www.pluzz.fr/accueil/1482938592915@x01,x02,Middle?kuid=rej5xr66n + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D577824%26t%3D2 + https://lpm-francetv.nuggad.net/rc?nuggn=1003426551&nuggrid=http%3A%2F%2Fpluzz.francetv.fr%2F&nuggsid=1807157810 + http://its.tradelab.fr/?type=tlsync&uuid2=3964743408562057859&callback=tl_sync + http://ib.adnxs.com/seg?add=2491894:59&t=2 + http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D494671%26t%3D2 + http://optimized-by.rubiconproject.com/a/9585/78422/369300-10.js?&cb=0.2205714238807559&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=78422_10 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + http://optimized-by.rubiconproject.com/a/9585/19915/82932-10.js?&cb=0.6441940027289093&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_10 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + https://its.tradelab.fr/?type=tlsync_dbm&google_gid=CAESEIoVsOz6EOVDfsDMihZ231U&google_cver=1 + http://optimized-by.rubiconproject.com/a/9585/19915/64921-15.js?&cb=0.8130071419291198&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&tg_i.cat11=xxxxxx&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=19915_15 + http://optimized-by.rubiconproject.com/a/9585/18414/57136-15.js?&cb=0.44732373277656734&tk_st=1&rp_s=l&ls_c.session_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.session_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.session_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.session_count.10.19915=0xc,0x5863c3bf,0x5863d69e&ls_c.visits_count.10.78422=0xd,0x5863bfd9,0x5863d69d&ls_c.visits_count.15.18414=0xc,0x5863c3c0,0x5863d69f&ls_c.visits_count.15.19915=0xc,0x5863c3c0,0x5863d69e&ls_c.visits_count.10.19915=0xc,0x5863c3bf,0x5863d69e&p_exp=1&p_pos=atf&p_screen_res=1366x768&ad_slot=18414_15 + http://beacon.krxd.net/optout_check?callback=Krux.ns._default.kxjsonp_optOutCheck + http://pub.ftv-publicite.fr//3/www.pluzz.fr/accueil/107077243@Middle?RM_Exclude=PLACEMEDIAPEM + http://pub.ftv-publicite.fr/5/www.pluzz.fr/accueil/L20/1270142028/Middle/FTV/2016046384945000100600101/2014045783940500128300801-2_340102.html/744c3932396c686a324f554141586534?_RM_EMPTY_&kuid=rej5xr66n + http://sync.mathtag.com/sync/img?mt_exid=44&redir=http%3A%2F%2Fads.stickyadstv.com%2Fuser-registering%3FdataProviderId%3D183%26userId%3D%5BMM_UUID%5D + http://pixel.rubiconproject.com/tap.php + http://sync.mathtag.com/sync/img?mt_exid=9 + http://pixel.rubiconproject.com/tap.php?v=109108&nid=3876&put=4455375326688717406&expires=30 + http://pixel.rubiconproject.com/tap.php?v=4894&nid=1986&put=4455375326688717406&expires=30 + http://rc.d.chango.com/m/rc + http://pixel.rubiconproject.com/tap.php?v=8981&nid=2307&put=2c0d1f6a-200f-4d4a-8e7d-3a49facbcdc8&expires=30 + http://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=48f55864-d8ed-4000-8c8e-2fe730ae5d4e + http://pixel.rubiconproject.com/tap.php?v=7751&nid=2249&expires=30&put=CAESENd3UDqQvdLFTUXtsm8zQLM&google_cver=1 + http://pixel.rubiconproject.com/tap.php?v=7249%7C%7C11203%7C%7C372838&nid=2146,2309,4884&put=RUIDkqhzeg6pamot596azd8jn16zu1fo99qi59dhjqq4jy5ejx7zj6yy====&expires=30 + + + true + true + 0 + -28 + + + 11 + + true + 40 + 20 + 5 + <p>When no caching is specified, each browser will handle it differently. Most of the time, it will automatically add a cache for you, but a poor one. You'd better handle it yourself.</p> + + phantomas + + + 11 + + http://pix04.revsci.net/F09828/b3/Z/3/noscript.gif?D=DM_LOC%3Dhttp%253A%252F%252Fpluzz.francetv.fr%252F%2526bpid%253Dfrancetv%26DM_EOM%3D1&C=F09828&L=0&asidi=KsJoTdg4t-PCWJg0Bi5uTw + http://logc238.xiti.com/hit.xiti?s=506685&s2=1&p=Accueil_site&vrn=1&lng=fr-FR&idp=2323118054535&jv=0&re=1366x768&vtag=4.6.2&hl=23x23x11&r=1366x768x24x24&rn=1482938591772&ref=&Rdt=On + http://ads.stickyadstv.com/data-registering?dataProviderId=281&g=1&o=2&i=3&f=3&a=4&l=2&s=1&k=0&m=1&h=1&e=4&fa=3&ce=4&em=4&sp=4&ti=4&tr=4&tv=2&le=1&ag=1&pf=0&hy=0&uh=0&gp=1&kr=0&tk=0&we=1&rm=0&mi=0&wn=0&sw=0&bi=0&frq=1&cb=0&sa=0&ls=0&he=1&ym=0&lh=1&hm=0&gm=0&ht=1&bc=0&fs=1&cg=0&ds=1&hs=1&yc=0&tg=1&cf=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + http://ads.stickyadstv.com/data-registering?dataProviderId=151&d1=1&d10=2&d11=3&d12=3&d2=4&d13=2&d3=1&d4=0&d7=1&d8=1&d9=4&i46=3&i3=4&i42=4&i26=4&i27=4&i8=4&a18=2&g1=1&g2=1&g3=0&g4=0&g5=0&n1=1&n2=0&n3=0&n4=1&n5=0&n6=0&n7=0&n8=0&n9=0&f2=1&h1=0&h2=0&h3=0&h4=1&h5=0&h6=1&h7=0&h8=0&h9=1&h10=0&h11=1&h12=0&h13=1&h14=1&h15=0&h16=1&h17=0&qc=0&ex=3&eb=4&ad=4&sb=2&on=4&c2=1&c3=3&c4=2 + http://ads.stickyadstv.com/data-registering?dataProviderId=681&alli=0&allitest=1 + http://beacon.krxd.net/pixel.gif?source=smarttag&fired=user_data_timeout&confid=J1mXKWTY&_kpid=635dd276-df1b-4b12-9873-16257c79d278&_kcp_s=Pluzz.francetv.fr&_kcp_d=pluzz.francetv.fr&_knifr=3&_kua_kx_tz=-480&geo_country=ph&geo_region=ceb&_kua_kx_lang=fr-fr&_kua_kx_tech_browser_language=fr-fr&_kua_kx_geo_country=ph&_kua_kx_geo_region=ceb&_kua_kx_tech_browser=Chrome%2027&_kua_kx_tech_manufacturer=Microsoft%20Corporation&_kua_kx_tech_device=Computer&_kua_kx_tech_os=Windows%207&_kua_kx_whistle=0&_kpa_ftvi_portail=francetv&_kpa_ftvi_section=francetvpluzz&_kpa_og_type=website&_kpa_og_title=francetv%20pluzz&t_navigation_type=0&t_dns=0&t_tcp=0&t_http_request=-1&t_http_response=1864&t_content_ready=7058&t_window_load=0&t_redirect=0&interchange_ran=false&userdata_was_requested=true&userdata_did_respond=false&store_user_after=rej6fgpic&sview=1&kplt2=27061&kplt3=27062&kplt4=27066&kplt6=27085&jsonp_requests=%2F%2Fbeacon.krxd.net%2Foptout_check%2CNaN%2C%2F%2Fcdn.krxd.net%2Fuserdata%2Fget%2CNaN + http://pixel.adsafeprotected.com/mon?anId=922445&campId=0x0&pubId=57799&placementId=FTV/2016046384945000100600101&pubCreative=11034714&cb=1270142028&custom=Middle&chanId=www.pluzz.fr/accueil/L20&adsafe_url=http%3A%2F%2Fpluzz.francetv.fr%2F&adsafe_type=abdq&adsafe_jsinfo=,id:dd5d5ec8-8843-ac90-304f-144477f487d1,c:yenAHt,sl:inView,em:false,fr:true,mn:app22sje,pt:1-5-15,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,br:w,fv:0,bv:na,dm:na,abv:na,an:n,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,pl:,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,uf:0,tt:jload,et:31,oid:93d16305-cd11-11e6-baa2-0025908676ba,v:17.1.18,sp:0,ct:na,dtm:i,gtpl:0,wr:1366.768,sr:1366.768,mf:1743017628,ov:0 + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHF,pingTime:0,time:42,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:42,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:42,fi:0,fo:0,fn:42%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[35~100],as:[35~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAHI,pingTime:-2,time:45,type:a,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:45,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:45,fi:0,fo:0,fn:45%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[38~100],as:[38~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*,slid:[eShowPubMiddle,pub-droite,enDirect,page],sinceFw:11,readyFired:true%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYa,pingTime:1,time:1065,type:pf,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1066,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1066,fi:0,fo:0,fn:1066%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1058~100],as:[1058~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + http://dt.adsafeprotected.com/dt?anId=922445&asId=dd5d5ec8-8843-ac90-304f-144477f487d1&tv=%7Bc:yenAYc,pingTime:1,time:1067,type:p,fc:0,rt:1,cb:0,np:1,th:0,es:0,sa:1,sc:0,gm:1,fif:1,slTimes:%7Bi:1067,o:0,n:0,pp:0,pm:0,gpp:0,gpm:0,gi:0,go:0,gn:1067,fi:0,fo:0,fn:1067%7D,slEvents:[%7Bsl:i,fsl:fn,gsl:gn,t:29,wc:0.0.1366.768,ac:0.0.1.1,am:s,cc:0.0.0.0,piv:100,obst:0,th:0,reas:,cmps:1,bkn:%7Bpiv:[1059~100],as:[1059~1.1]%7D%7D],slEventCount:1,em:false,fr:true,uf:0,e:,tt:jload,dtt:0,fm:q6H1gOt+1*.922445%7C11%7C12%7C13%7C14%7C15%7C16%7C17,idMap:1*%7D&br=w + + + true + false + 60 + 0 + + + 23 + + true + 40 + 20 + 5 + <p>Responses with too short caching time (less than a week).</p><p>The longer you cache, the better. Add versionning to your static assets, if it's not already done, and set their cache time to one year.</p> + + phantomas + + + 23 + + + http://pluzz.webservices.francetelevisions.fr/pluzz/programme/?callback=pluzz_web_liste + 218 + 4 + minutes + + + http://api.lereferentiel.francetv.fr/metanav/definitions/?callback=receivePlus + 284 + 5 + minutes + + + http://cdn.tradelab.fr/seg.js?add=577824 + 300 + 5 + minutes + + + http://cdn.tradelab.fr/tag/59763bfbc2.js + 300 + 5 + minutes + + + http://cdn.tradelab.fr/seg.js?add=494671 + 300 + 5 + minutes + + + http://api.lereferentiel.francetv.fr/flux-footer-transverse/?callback=callbackJsonp + 463 + 8 + minutes + + + http://cdn.krxd.net/controltag?confid=J1mXKWTY + 1200 + 20 + minutes + + + http://cdn.krxd.net/controltag/J1mXKWTY.js + 1200 + 20 + minutes + + + http://cdn.krxd.net/userdata/get?pub=635dd276-df1b-4b12-9873-16257c79d278&callback=Krux.ns._default.kxjsonp_userdata + 1800 + 30 + minutes + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_57136_15 + 3598 + 3 + days + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_82932_10 + 3599 + 3 + days + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_64921_15 + 3599 + 3 + days + + + http://gum.criteo.com/sync?c=2&r=2&j=rp_onUserIdLoaded_369300_10 + 3599 + 3 + days + + + https://js-agent.newrelic.com/nr-998.min.js + 3600 + 3 + days + + + http://ads.rubiconproject.com/ad/9585.js + 4711 + 3 + days + + + http://www.google-analytics.com/analytics.js + 7200 + 2 + hours + + + http://static.francetv.fr/img/metanav/sprite-v1.8.28.png + 20741 + 6 + hours + + + http://newsletters.francetv.fr/footer-transverse/pictures/jeux.png + 86400 + 24 + hours + + + http://cdn.oas-eu1.adnxs.com/0/default/empty.gif + 86400 + 24 + hours + + + http://newsletters.francetv.fr/footer-transverse/pictures/franceTv-logo-bottom.png + 86400 + 24 + hours + + + http://newsletters.francetv.fr/footer-transverse/img/footer-transverse_v1.0.2.png + 86400 + 24 + hours + + + http://newsletters.francetv.fr/footer-transverse/pictures/logo-francetvPluzz.png + 86400 + 24 + hours + + + http://static.francetv.fr/js/jquery.metanav-min.js?20161007 + 583679 + 7 + days + + + + true + false + 0 + 0 + +
    + + + + + + 92 + + totalWeight + imageOptimization + gzipCompression + fileMinification + + + + + 44 + + totalRequests + domains + notFound + identicalFiles + emptyRequests + smallRequests + lazyLoadableImagesBelowTheFold + hiddenImages + + + + + 42 + + DOMelementsCount + DOMelementMaxDepth + iframesCount + DOMidDuplicated + + + + + 0 + + DOMaccesses + queriesWithoutResults + DOMqueriesAvoidable + + + + + 100 + + eventsScrollBound + DOMaccessesOnScroll + + + + + 96 + + jsErrors + documentWriteCalls + synchronousXHR + consoleMessages + globalVariables + + + + + 34 + + jQueryVersion + jQueryVersionsLoaded + jQueryCallsOnEmptyObject + jQueryNotDelegatedEvents + + + + + 81 + + cssRules + cssComplexSelectors + cssColors + similarColors + cssBreakpoints + cssMobileFirst + + + + + 86 + + cssParsingErrors + cssImports + cssDuplicatedSelectors + cssDuplicatedProperties + cssEmptyRules + cssExpressions + cssImportants + cssOldIEFixes + cssOldPropertyPrefixes + cssRedundantBodySelectors + cssRedundantChildNodesSelectors + + + + + 100 + + fontsCount + heavyFonts + unusedUnicodeRanges + + + + + 21 + + http2 + closedConnections + cachingNotSpecified + cachingDisabled + cachingTooShort + + + + 61 + + +
    +