This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperties(this, { | |
"ResourceTimingArbiter": { | |
value: (function () { | |
var _oldResources = []; | |
var _allDupes = []; | |
var _resourceArbiter = {}; | |
var _escape = function(str) { | |
return "".replace.call(str, /[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
if (typeof(Services) === "undefined") | |
{ | |
Object.defineProperties(this, { | |
Services: { | |
value: {}, | |
configurable: false, | |
writable: false | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
if (CSSStyleDeclaration.prototype.hasOwnProperty("transform")) { | |
} | |
else if (CSSStyleDeclaration.prototype.hasOwnProperty("msTransform")) { | |
Object.defineProperties(CSSStyleDeclaration.prototype, { | |
transform: { | |
get: function get_transform() { | |
return this.msTransform; | |
}, | |
set: function set_transform(transform) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Drawing.Imaging; | |
public class PackImagesApplication | |
{ | |
private static string cssFormat = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
if (window.MSApp && window.MSApp.execUnsafeLocalFunction) { | |
(function () { | |
var _originalWrite = Document.prototype.write; | |
var _originalWriteln = Document.prototype.writeln; | |
Object.defineProperties(Document.prototype, { | |
write: { | |
value: function write() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Xml; | |
using System.IO; | |
public class ImportWebSiteToWWA | |
{ | |
private static void Main(string[] args) | |
{ |
NewerOlder