1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/*
* Copyright (C) 2013 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
WebInspector.CSSStyleManager = function()
{
WebInspector.Object.call(this);
CSSAgent.enable();
WebInspector.Frame.addEventListener(WebInspector.Frame.Event.MainResourceDidChange, this._mainResourceDidChange, this);
WebInspector.Frame.addEventListener(WebInspector.Frame.Event.ResourceWasAdded, this._resourceAdded, this);
WebInspector.Resource.addEventListener(WebInspector.SourceCode.Event.ContentDidChange, this._resourceContentDidChange, this);
WebInspector.Resource.addEventListener(WebInspector.Resource.Event.TypeDidChange, this._resourceTypeDidChange, this);
WebInspector.DOMNode.addEventListener(WebInspector.DOMNode.Event.AttributeModified, this._nodeAttributesDidChange, this);
WebInspector.DOMNode.addEventListener(WebInspector.DOMNode.Event.AttributeRemoved, this._nodeAttributesDidChange, this);
WebInspector.DOMNode.addEventListener(WebInspector.DOMNode.Event.EnabledPseudoClassesChanged, this._nodePseudoClassesDidChange, this);
this._colorFormatSetting = new WebInspector.Setting("default-color-format", WebInspector.Color.Format.Original);
this._styleSheetIdentifierMap = {};
this._styleSheetFrameURLMap = {};
this._nodeStylesMap = {};
}
WebInspector.CSSStyleManager.ForceablePseudoClasses = ["active", "focus", "hover", "visited"];
WebInspector.CSSStyleManager.prototype = {
constructor: WebInspector.CSSStyleManager,
// Public
get preferredColorFormat()
{
return this._colorFormatSetting.value;
},
canForcePseudoClasses: function()
{
return !!CSSAgent.forcePseudoState;
},
propertyNameHasOtherVendorPrefix: function(name)
{
if (!name || name.length < 4 || name.charAt(0) !== "-")
return false;
var match = name.match(/^(?:-moz-|-ms-|-o-|-epub-)/);
if (!match)
return false;
return true;
},
propertyValueHasOtherVendorKeyword: function(value)
{
var match = value.match(/(?:-moz-|-ms-|-o-|-epub-)[-\w]+/);
if (!match)
return false;
return true;
},
canonicalNameForPropertyName: function(name)
{
if (!name || name.length < 8 || name.charAt(0) !== "-")
return name;
var match = name.match(/^(?:-webkit-|-khtml-|-apple-)(.+)/);
if (!match)
return name;
return match[1];
},
styleSheetForIdentifier: function(id)
{
if (id in this._styleSheetIdentifierMap)
return this._styleSheetIdentifierMap[id];
var styleSheet = new WebInspector.CSSStyleSheet(id);
this._styleSheetIdentifierMap[id] = styleSheet;
return styleSheet;
},
stylesForNode: function(node)
{
if (node.id in this._nodeStylesMap)
return this._nodeStylesMap[node.id];
var styles = new WebInspector.DOMNodeStyles(node);
this._nodeStylesMap[node.id] = styles;
return styles;
},
// Protected
mediaQueryResultChanged: function()
{
// Called from WebInspector.CSSObserver.
for (var key in this._nodeStylesMap)
this._nodeStylesMap[key].mediaQueryResultDidChange();
},
styleSheetChanged: function(styleSheetIdentifier)
{
// Called from WebInspector.CSSObserver.
var styleSheet = this.styleSheetForIdentifier(styleSheetIdentifier);
console.assert(styleSheet);
styleSheet.noteContentDidChange();
this._updateResourceContent(styleSheet);
},
// Private
_nodePseudoClassesDidChange: function(event)
{
var node = event.target;
for (var key in this._nodeStylesMap) {
var nodeStyles = this._nodeStylesMap[key];
if (nodeStyles.node !== node && !nodeStyles.node.isDescendant(node))
continue;
nodeStyles.pseudoClassesDidChange(node);
}
},
_nodeAttributesDidChange: function(event)
{
var node = event.target;
for (var key in this._nodeStylesMap) {
var nodeStyles = this._nodeStylesMap[key];
if (nodeStyles.node !== node && !nodeStyles.node.isDescendant(node))
continue;
nodeStyles.attributeDidChange(node, event.data.name);
}
},
_mainResourceDidChange: function(event)
{
console.assert(event.target instanceof WebInspector.Frame);
if (!event.target.isMainFrame())
return;
// Clear our maps when the main frame navigates.
this._styleSheetIdentifierMap = {};
this._styleSheetFrameURLMap = {};
this._nodeStylesMap = {};
},
_resourceAdded: function(event)
{
console.assert(event.target instanceof WebInspector.Frame);
var resource = event.data.resource;
console.assert(resource);
if (resource.type !== WebInspector.Resource.Type.Stylesheet)
return;
this._clearStyleSheetsForResource(resource);
},
_resourceTypeDidChange: function(event)
{
console.assert(event.target instanceof WebInspector.Resource);
var resource = event.target;
if (resource.type !== WebInspector.Resource.Type.Stylesheet)
return;
this._clearStyleSheetsForResource(resource);
},
_clearStyleSheetsForResource: function(resource)
{
// Clear known stylesheets for this URL and frame. This will cause the stylesheets to
// be updated next time _fetchInfoForAllStyleSheets is called.
// COMPATIBILITY (iOS 6): The frame's id was not available for the key, so delete just the url too.
delete this._styleSheetFrameURLMap[this._frameURLMapKey(resource.parentFrame, resource.url)];
delete this._styleSheetFrameURLMap[resource.url];
},
_frameURLMapKey: function(frame, url)
{
return (frame ? frame.id + ":" : "") + url;
},
_lookupStyleSheetForResource: function(resource, callback)
{
this._lookupStyleSheet(resource.parentFrame, resource.url, callback);
},
_lookupStyleSheet: function(frame, url, callback)
{
console.assert(frame instanceof WebInspector.Frame);
function syleSheetsFetched()
{
callback(this._styleSheetFrameURLMap[key] || this._styleSheetFrameURLMap[url] || null);
}
var key = this._frameURLMapKey(frame, url);
// COMPATIBILITY (iOS 6): The frame's id was not available for the key, so check for just the url too.
if (key in this._styleSheetFrameURLMap || url in this._styleSheetFrameURLMap)
callback(this._styleSheetFrameURLMap[key] || this._styleSheetFrameURLMap[url] || null);
else
this._fetchInfoForAllStyleSheets(syleSheetsFetched.bind(this));
},
_fetchInfoForAllStyleSheets: function(callback)
{
console.assert(typeof callback === "function");
function processStyleSheets(error, styleSheets)
{
this._styleSheetFrameURLMap = {};
if (error) {
callback();
return;
}
for (var i = 0; i < styleSheets.length; ++i) {
var styleSheetInfo = styleSheets[i];
// COMPATIBILITY (iOS 6): The info did not have 'frameId', so make parentFrame null in that case.
var parentFrame = "frameId" in styleSheetInfo ? WebInspector.frameResourceManager.frameForIdentifier(styleSheetInfo.frameId) : null;
var styleSheet = this.styleSheetForIdentifier(styleSheetInfo.styleSheetId);
styleSheet.updateInfo(styleSheetInfo.sourceURL, parentFrame);
var key = this._frameURLMapKey(parentFrame, styleSheetInfo.sourceURL);
this._styleSheetFrameURLMap[key] = styleSheet;
}
callback();
}
CSSAgent.getAllStyleSheets(processStyleSheets.bind(this));
},
_resourceContentDidChange: function(event)
{
var resource = event.target;
if (resource === this._ignoreResourceContentDidChangeEventForResource)
return;
// Ignore if it isn't a CSS stylesheet.
if (resource.type !== WebInspector.Resource.Type.Stylesheet || resource.syntheticMIMEType !== "text/css")
return;
function applyStyleSheetChanges()
{
function styleSheetFound(styleSheet)
{
delete resource.__pendingChangeTimeout;
console.assert(styleSheet);
if (!styleSheet)
return;
// To prevent updating a TextEditor's content while the user is typing in it we want to
// ignore the next _updateResourceContent call.
resource.__ignoreNextUpdateResourceContent = true;
WebInspector.branchManager.currentBranch.revisionForRepresentedObject(styleSheet).content = resource.content;
}
this._lookupStyleSheetForResource(resource, styleSheetFound.bind(this));
}
if (resource.__pendingChangeTimeout)
clearTimeout(resource.__pendingChangeTimeout);
resource.__pendingChangeTimeout = setTimeout(applyStyleSheetChanges.bind(this), 500);
},
_updateResourceContent: function(styleSheet)
{
console.assert(styleSheet);
function fetchedStyleSheetContent(styleSheet, content)
{
delete styleSheet.__pendingChangeTimeout;
console.assert(styleSheet.url);
if (!styleSheet.url)
return;
var resource = null;
// COMPATIBILITY (iOS 6): The stylesheet did not always have a frame, so fallback to looking
// for the resource in all frames.
if (styleSheet.parentFrame)
resource = styleSheet.parentFrame.resourceForURL(styleSheet.url);
else
resource = WebInspector.frameResourceManager.resourceForURL(styleSheet.url);
if (!resource)
return;
// Only try to update stylesheet resources. Other resources, like documents, can contain
// multiple stylesheets and we don't have the source ranges to update those.
if (resource.type !== WebInspector.Resource.Type.Stylesheet)
return;
if (resource.__ignoreNextUpdateResourceContent) {
delete resource.__ignoreNextUpdateResourceContent;
return;
}
this._ignoreResourceContentDidChangeEventForResource = resource;
WebInspector.branchManager.currentBranch.revisionForRepresentedObject(resource).content = content;
delete this._ignoreResourceContentDidChangeEventForResource;
}
function styleSheetReady()
{
styleSheet.requestContent(fetchedStyleSheetContent.bind(this));
}
function applyStyleSheetChanges()
{
if (styleSheet.url)
styleSheetReady.call(this);
else
this._fetchInfoForAllStyleSheets(styleSheetReady.bind(this));
}
if (styleSheet.__pendingChangeTimeout)
clearTimeout(styleSheet.__pendingChangeTimeout);
styleSheet.__pendingChangeTimeout = setTimeout(applyStyleSheetChanges.bind(this), 500);
}
}
WebInspector.CSSStyleManager.prototype.__proto__ = WebInspector.Object.prototype;
|