├── Readme.txt ├── documentation └── api │ └── developer │ ├── css │ ├── all.css │ ├── fonts │ │ ├── mplus-1m-bold-webfont.eot │ │ ├── mplus-1m-bold-webfont.svg │ │ ├── mplus-1m-bold-webfont.ttf │ │ ├── mplus-1m-bold-webfont.woff │ │ ├── mplus-1m-regular-webfont.eot │ │ ├── mplus-1m-regular-webfont.svg │ │ ├── mplus-1m-regular-webfont.ttf │ │ └── mplus-1m-regular-webfont.woff │ ├── handheld.css │ └── screen.css │ ├── files.html │ ├── index.html │ ├── javascript │ ├── all.js │ └── html5.js │ └── symbols │ ├── $sf.env.html │ ├── $sf.env.ua.html │ ├── $sf.html │ ├── $sf.lib.dom.html │ ├── $sf.lib.dom.iframes.html │ ├── $sf.lib.dom.msghost.html │ ├── $sf.lib.html │ ├── $sf.lib.lang.ParamHash.html │ ├── $sf.lib.lang.html │ ├── $sf.pub.Config.html │ ├── $sf.pub.PosConfig.html │ ├── $sf.pub.Position.html │ ├── $sf.pub.html │ └── $sf.vend.html ├── examples ├── IAB_RisingStars │ ├── AdFiles │ │ ├── Readme.txt │ │ ├── ad460.png │ │ ├── adContentTemplates │ │ │ ├── filmstripAd.html │ │ │ ├── portraitAd.html │ │ │ └── sidekickAd.html │ │ ├── adModule1Expansion.png │ │ ├── adModule2Expansion.png │ │ ├── adPortraitBehavior.js │ │ ├── adScriptBehavior.js │ │ ├── ad_300x250.png │ │ ├── ad_700x700.png │ │ ├── adcontent.html │ │ ├── backupImage.png │ │ ├── billboardAdBootstrap.js │ │ ├── downarrow.png │ │ ├── filmstripAdBootstrap.js │ │ ├── portraitAdBootstrap.js │ │ ├── pushdownAdBootstrap.js │ │ ├── pushdownAdContent.html │ │ ├── pushdown_expanded_ad.png │ │ ├── sample_billboard_child_ad_as3.swf │ │ ├── sidekickAdBootstrap.js │ │ └── sidekickBehavior.js │ ├── billboard_sample.html │ ├── filmstrip_sample.html │ ├── index.html │ ├── portrait_sample.html │ ├── pushdown_sample.html │ ├── risingstarnav.js │ ├── samp.css │ ├── sidekick_host.js │ └── sidekick_sample.html ├── creative_test.html ├── doubleclick_sample.html ├── expansion_adfiles │ └── expandingAd.js ├── expansion_sample.html ├── index.html ├── viewability_adfiles │ └── viewabilityAd.js └── viewability_sample.html ├── license.txt ├── src ├── html │ └── r.html └── js │ ├── ext │ └── ext.js │ ├── host │ └── host.js │ └── lib │ ├── base.js │ ├── boot.js │ └── proxy.js └── tests ├── configAndCallbackTests.html ├── dblclick_2.html ├── doubleclick_sample.html ├── exampleExpandingAd.html ├── sample1_sf_tag_at_once.html ├── sample2_sf_explicit_boot.html ├── sample3_sf_sibling_boot.html ├── sample_300x250.txt ├── sample_ads ├── adBootstrap.js ├── exampleAdvertiserScripts.js ├── js_writeVendorAd.js ├── mouseOverExpander.js └── vendorActionScript.js ├── sample_sfscripts.html ├── script_testing_index.html ├── singleVendorAd.html ├── testPublisherMethods.html └── testVendorAds.html /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/Readme.txt -------------------------------------------------------------------------------- /documentation/api/developer/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/all.css -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-bold-webfont.eot -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-bold-webfont.svg -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-bold-webfont.ttf -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-bold-webfont.woff -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-regular-webfont.eot -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-regular-webfont.svg -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-regular-webfont.ttf -------------------------------------------------------------------------------- /documentation/api/developer/css/fonts/mplus-1m-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/fonts/mplus-1m-regular-webfont.woff -------------------------------------------------------------------------------- /documentation/api/developer/css/handheld.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/handheld.css -------------------------------------------------------------------------------- /documentation/api/developer/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/css/screen.css -------------------------------------------------------------------------------- /documentation/api/developer/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/files.html -------------------------------------------------------------------------------- /documentation/api/developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/index.html -------------------------------------------------------------------------------- /documentation/api/developer/javascript/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/javascript/all.js -------------------------------------------------------------------------------- /documentation/api/developer/javascript/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/javascript/html5.js -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.env.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.env.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.env.ua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.env.ua.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.dom.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.dom.iframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.dom.iframes.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.dom.msghost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.dom.msghost.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.lang.ParamHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.lang.ParamHash.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.lib.lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.lib.lang.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.pub.Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.pub.Config.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.pub.PosConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.pub.PosConfig.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.pub.Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.pub.Position.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.pub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.pub.html -------------------------------------------------------------------------------- /documentation/api/developer/symbols/$sf.vend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/documentation/api/developer/symbols/$sf.vend.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/Readme.txt -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/ad460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/ad460.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adContentTemplates/filmstripAd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adContentTemplates/filmstripAd.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adContentTemplates/portraitAd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adContentTemplates/portraitAd.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adContentTemplates/sidekickAd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adContentTemplates/sidekickAd.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adModule1Expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adModule1Expansion.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adModule2Expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adModule2Expansion.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adPortraitBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adPortraitBehavior.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adScriptBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adScriptBehavior.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/ad_300x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/ad_300x250.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/ad_700x700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/ad_700x700.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/adcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/adcontent.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/backupImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/backupImage.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/billboardAdBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/billboardAdBootstrap.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/downarrow.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/filmstripAdBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/filmstripAdBootstrap.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/portraitAdBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/portraitAdBootstrap.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/pushdownAdBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/pushdownAdBootstrap.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/pushdownAdContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/pushdownAdContent.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/pushdown_expanded_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/pushdown_expanded_ad.png -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/sample_billboard_child_ad_as3.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/sample_billboard_child_ad_as3.swf -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/sidekickAdBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/sidekickAdBootstrap.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/AdFiles/sidekickBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/AdFiles/sidekickBehavior.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/billboard_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/billboard_sample.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/filmstrip_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/filmstrip_sample.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/index.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/portrait_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/portrait_sample.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/pushdown_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/pushdown_sample.html -------------------------------------------------------------------------------- /examples/IAB_RisingStars/risingstarnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/risingstarnav.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/samp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/samp.css -------------------------------------------------------------------------------- /examples/IAB_RisingStars/sidekick_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/sidekick_host.js -------------------------------------------------------------------------------- /examples/IAB_RisingStars/sidekick_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/IAB_RisingStars/sidekick_sample.html -------------------------------------------------------------------------------- /examples/creative_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/creative_test.html -------------------------------------------------------------------------------- /examples/doubleclick_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/doubleclick_sample.html -------------------------------------------------------------------------------- /examples/expansion_adfiles/expandingAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/expansion_adfiles/expandingAd.js -------------------------------------------------------------------------------- /examples/expansion_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/expansion_sample.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/viewability_adfiles/viewabilityAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/viewability_adfiles/viewabilityAd.js -------------------------------------------------------------------------------- /examples/viewability_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/examples/viewability_sample.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/license.txt -------------------------------------------------------------------------------- /src/html/r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/html/r.html -------------------------------------------------------------------------------- /src/js/ext/ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/js/ext/ext.js -------------------------------------------------------------------------------- /src/js/host/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/js/host/host.js -------------------------------------------------------------------------------- /src/js/lib/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/js/lib/base.js -------------------------------------------------------------------------------- /src/js/lib/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/js/lib/boot.js -------------------------------------------------------------------------------- /src/js/lib/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/src/js/lib/proxy.js -------------------------------------------------------------------------------- /tests/configAndCallbackTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/configAndCallbackTests.html -------------------------------------------------------------------------------- /tests/dblclick_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/dblclick_2.html -------------------------------------------------------------------------------- /tests/doubleclick_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/doubleclick_sample.html -------------------------------------------------------------------------------- /tests/exampleExpandingAd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/exampleExpandingAd.html -------------------------------------------------------------------------------- /tests/sample1_sf_tag_at_once.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample1_sf_tag_at_once.html -------------------------------------------------------------------------------- /tests/sample2_sf_explicit_boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample2_sf_explicit_boot.html -------------------------------------------------------------------------------- /tests/sample3_sf_sibling_boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample3_sf_sibling_boot.html -------------------------------------------------------------------------------- /tests/sample_300x250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_300x250.txt -------------------------------------------------------------------------------- /tests/sample_ads/adBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_ads/adBootstrap.js -------------------------------------------------------------------------------- /tests/sample_ads/exampleAdvertiserScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_ads/exampleAdvertiserScripts.js -------------------------------------------------------------------------------- /tests/sample_ads/js_writeVendorAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_ads/js_writeVendorAd.js -------------------------------------------------------------------------------- /tests/sample_ads/mouseOverExpander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_ads/mouseOverExpander.js -------------------------------------------------------------------------------- /tests/sample_ads/vendorActionScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_ads/vendorActionScript.js -------------------------------------------------------------------------------- /tests/sample_sfscripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/sample_sfscripts.html -------------------------------------------------------------------------------- /tests/script_testing_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/script_testing_index.html -------------------------------------------------------------------------------- /tests/singleVendorAd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/singleVendorAd.html -------------------------------------------------------------------------------- /tests/testPublisherMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/testPublisherMethods.html -------------------------------------------------------------------------------- /tests/testVendorAds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adqio/safeframe/HEAD/tests/testVendorAds.html --------------------------------------------------------------------------------