<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[191693] trunk/Source/WebInspectorUI</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/191693">191693</a></dd>
<dt>Author</dt> <dd>timothy@apple.com</dd>
<dt>Date</dt> <dd>2015-10-28 14:24:17 -0700 (Wed, 28 Oct 2015)</dd>
</dl>
<h3>Log Message</h3>
<pre>Web Inspector: Remove image generators and use SVG directly
https://bugs.webkit.org/show_bug.cgi?id=150602
Reviewed by Brain Burg.
This removes the code used to generate button image states as various canvas bitmaps.
With the simplification of the UI in Yosemite, we can now just style SVG images to change
the color used by the glyphs in these images. To do that we use the special "currentColor"
color keyword. That keyword represents the current value of the applied CSS text color.
This approach was used since it works across shadow DOM boundaries, which are there with
our new use of the SVG <use> element to import glyphs. This allows us to eliminate the
"stroked" and "filled" classes that were used to style some images that used the old
wrappedSVGDocument image utility.
Some of the SVG images had to be recreated -- specifically the removal of <clipPath> and
<text> elements. Those elements do not work or work well with the <use> element. We can
now only use graphical elements like <path>, <rect>, <circle>, etc.
* UserInterface/Images/*.svg: Added id to the top level for most images. Use currentColor instead of black. Sorted attributes.
* UserInterface/Images/gtk/*.svg: Added id to the top level for most images. Filed bug 150603 to track adopting currentColor.
* UserInterface/Base/ImageUtilities.js:
(useSVGSymbol): Added.
(catch): Deleted.
(_devicePixelRatioChanged): Deleted.
(_registerGeneratedImageUpdateFunction): Deleted.
(_logSQLError): Deleted.
(_logSQLTransactionError): Deleted.
(_prefetchCachedImagesAndUpdate): Deleted.
(_prefetchCachedImagesAndUpdate.): Deleted.
(else.): Deleted.
(restoreImageFromStorage): Deleted.
(imageLoaded): Deleted.
(ensureImageIsLoaded): Deleted.
(restoreImages.restoreActiveImages): Deleted.
(restoreImages): Deleted.
(restoreImage): Deleted.
(update): Deleted.
(generateImages.generateActiveImages): Deleted.
(generateImages): Deleted.
(generateImage): Deleted.
(_drawImageShadow): Deleted.
(_invertMaskImage): Deleted.
(_applyImageMask): Deleted.
(generateEmbossedImages): Deleted.
(invokeCallbackWithDocument): Deleted.
(imageLoad): Deleted.
(imageError): Deleted.
(wrappedSVGDocument): Deleted.
* UserInterface/Views/ActivateButtonNavigationItem.js:
(WebInspector.ActivateButtonNavigationItem.prototype.set activated):
(WebInspector.ActivateButtonNavigationItem.prototype.generateStyleText): Deleted.
* UserInterface/Views/ButtonNavigationItem.css:
(.navigation-bar .item.button):
(.navigation-bar .item.button > .glyph):
(.navigation-bar .item.button:not(.disabled):active > .glyph):
(.navigation-bar .item.button:not(.disabled):matches(:focus, .activate.activated, .radio.selected) > .glyph):
(.navigation-bar .item.button:not(.disabled):active:matches(:focus, .activate.activated, .radio.selected) > .glyph):
(body.window-inactive .navigation-bar .item.button > .glyph):
(.navigation-bar .item.button.disabled > .glyph):
(body.window-inactive .navigation-bar .item.button.disabled > .glyph):
(.navigation-bar .item.button.text-only): Deleted.
(body.window-inactive .navigation-bar .item.button:not(.suppress-emboss) > .glyph): Deleted.
(body.window-inactive .navigation-bar .item.button.disabled:not(.suppress-emboss) > .glyph): Deleted.
(.navigation-bar .item.button.suppress-emboss): Deleted.
(.navigation-bar .item.button.suppress-emboss > .glyph): Deleted.
(.navigation-bar .item.button.suppress-emboss:active > .glyph): Deleted.
(.navigation-bar .item.button.suppress-emboss.disabled > .glyph): Deleted.
* UserInterface/Views/ButtonNavigationItem.js:
(WebInspector.ButtonNavigationItem.prototype.set image):
(WebInspector.ButtonNavigationItem): Deleted.
(WebInspector.ButtonNavigationItem.prototype.get suppressBezel): Deleted.
(WebInspector.ButtonNavigationItem.prototype.set suppressBezel): Deleted.
(WebInspector.ButtonNavigationItem.prototype.generateStyleText): Deleted.
(WebInspector.ButtonNavigationItem.prototype._canvasIdentifier): Deleted.
(WebInspector.ButtonNavigationItem.prototype._updateImage): Deleted.
(WebInspector.ButtonNavigationItem.prototype._generateImages): Deleted.
* UserInterface/Views/ButtonToolbarItem.css:
(.toolbar .item.button > .glyph):
(.toolbar .item.button:not(.disabled):active > .glyph):
* UserInterface/Views/ControlToolbarItem.css:
(.toolbar .item.control):
(.toolbar .item.control:hover):
* UserInterface/Views/MultipleScopeBarItem.js:
(WebInspector.MultipleScopeBarItem):
* UserInterface/Views/NavigationBar.js:
(WebInspector.NavigationBar.prototype.updateLayoutSoon.update):
(WebInspector.NavigationBar.prototype.updateLayoutSoon):
(WebInspector.NavigationBar): Deleted.
(WebInspector.NavigationBar.prototype.insertNavigationItem): Deleted.
(WebInspector.NavigationBar.prototype.removeNavigationItem): Deleted.
(WebInspector.NavigationBar.prototype.updateLayout): Deleted.
(WebInspector.NavigationBar.prototype._updateStyle): Deleted.
* UserInterface/Views/NetworkSidebarPanel.js:
(WebInspector.NetworkSidebarPanel.prototype.treeElementAddedOrChanged):
* UserInterface/Views/RadioButtonNavigationItem.js:
(WebInspector.RadioButtonNavigationItem.prototype.set active):
(WebInspector.RadioButtonNavigationItem.prototype.generateStyleText): Deleted.
* UserInterface/Views/ScopeBar.css:
(.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows):
(.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .filled): Deleted.
(.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .stroked): Deleted.
* UserInterface/Views/ScopeBarItem.js:
(WebInspector.ScopeBarItem):
* UserInterface/Views/ScopeRadioButtonNavigationItem.css:
(.scope-radio-button-navigation-item:hover > .arrows):
(.scope-radio-button-navigation-item.selected > .arrows > svg .stroked): Deleted.
* UserInterface/Views/ScopeRadioButtonNavigationItem.js:
(WebInspector.ScopeRadioButtonNavigationItem):
* UserInterface/Views/TimelineSidebarPanel.css:
(.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple .arrows):
(.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .filled): Deleted.
(.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .stroked): Deleted.
* UserInterface/Views/TimelineSidebarPanel.js:
(WebInspector.TimelineSidebarPanel.prototype.treeElementAddedOrChanged):
(WebInspector.TimelineSidebarPanel.prototype._timelineAdded):
* UserInterface/Views/ToggleButtonNavigationItem.js:
(WebInspector.ToggleButtonNavigationItem): Deleted.
* UserInterface/Views/TreeElementStatusButton.css:
(.item > .status > .status-button):
(:matches(:focus, .force-focus) .item.selected > .status > .status-button):
(.item > .status > .status-button > svg .filled): Deleted.
(:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .filled): Deleted.
(.item > .status > .status-button > svg .stroked): Deleted.
(:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .stroked): Deleted.
* UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js:
(WebInspector.VisualStyleCommaSeparatedKeywordEditor):
* UserInterface/Views/VisualStyleDetailsPanel.css:
(.sidebar > .panel.details.css-style .visual > .details-section .details-section > .header > .visual-style-section-clear):
* UserInterface/Views/VisualStyleKeywordIconList.css:
(.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected):
(.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon:not(.selected) > div):
(.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .stroked): Deleted.
(.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .filled): Deleted.
* UserInterface/Views/VisualStyleKeywordIconList.js:
(WebInspector.VisualStyleKeywordIconList.createListItem):
(WebInspector.VisualStyleKeywordIconList):
* UserInterface/Views/VisualStylePropertyEditorLink.css:
(.visual-style-property-editor-link > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon)):
(.visual-style-property-editor-link:not(.linked) > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon)):
(.visual-style-property-editor-link > .visual-style-property-editor-link-icon): Deleted.
(.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .filled): Deleted.
(.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .stroked): Deleted.
* UserInterface/Views/VisualStylePropertyEditorLink.js:
(WebInspector.VisualStylePropertyEditorLink):
* UserInterface/Views/VisualStyleSelectorSection.css:
(.details-section.visual-style-selector-section > .header > .controls > .visual-style-selector-section-add-rule):
* UserInterface/Views/VisualStyleSelectorSection.js:
(WebInspector.VisualStyleSelectorSection):</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceBaseImageUtilitiesjs">trunk/Source/WebInspectorUI/UserInterface/Base/ImageUtilities.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBackForwardArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/BackForwardArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBreakpointActionAddsvg">trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionAdd.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBreakpointActionRemovesvg">trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionRemove.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBreakpointButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBreakpointInactiveButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointInactiveButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesBreakpointssvg">trunk/Source/WebInspectorUI/UserInterface/Images/Breakpoints.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCheckerssvg">trunk/Source/WebInspectorUI/UserInterface/Images/Checkers.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCirclesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Circle.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesClearBothsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ClearBoth.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesClearLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ClearLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesClearRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ClearRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesClosesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Close.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCloseLargesvg">trunk/Source/WebInspectorUI/UserInterface/Images/CloseLarge.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCloseWhitesvg">trunk/Source/WebInspectorUI/UserInterface/Images/CloseWhite.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesConsolesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Console.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesContentFlowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ContentFlow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCrosshairsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Crosshair.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesCubicBeziersvg">trunk/Source/WebInspectorUI/UserInterface/Images/CubicBezier.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMCharacterDatasvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMCharacterData.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMCommentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMComment.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMDocumentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocument.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMDocumentTypesvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocumentType.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMNodesvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMNode.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDOMTextNodesvg">trunk/Source/WebInspectorUI/UserInterface/Images/DOMTextNode.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDebugsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Debug.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDebuggersvg">trunk/Source/WebInspectorUI/UserInterface/Images/Debugger.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDisclosureTrianglessvg">trunk/Source/WebInspectorUI/UserInterface/Images/DisclosureTriangles.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDockBottomsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DockBottom.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDockRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DockRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesDownloadArrowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/DownloadArrow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesElementssvg">trunk/Source/WebInspectorUI/UserInterface/Images/Elements.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesErrorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Error.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesErrorssvg">trunk/Source/WebInspectorUI/UserInterface/Images/Errors.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesErrorsEnabledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ErrorsEnabled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesEventListenersvg">trunk/Source/WebInspectorUI/UserInterface/Images/EventListener.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesExceptionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Exception.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesEyesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Eye.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFilterFieldGlyphsvg">trunk/Source/WebInspectorUI/UserInterface/Images/FilterFieldGlyph.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFloatLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/FloatLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFloatRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/FloatRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFontStyleItalicsvg">trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleItalic.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFontStyleNormalsvg">trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleNormal.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFontVariantSmallCapssvg">trunk/Source/WebInspectorUI/UserInterface/Images/FontVariantSmallCaps.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesFunctionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Function.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesGearsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Gear.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesGoToArrowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/GoToArrow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesHierarchicalNavigationItemChevronsvg">trunk/Source/WebInspectorUI/UserInterface/Images/HierarchicalNavigationItemChevron.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner1svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner1.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner10svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner10.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner11svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner11.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner12svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner12.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner2svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner2.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner3svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner3.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner4svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner4.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner5svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner5.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner6svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner6.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner7svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner7.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner8svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner8.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner9svg">trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner9.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesInfosvg">trunk/Source/WebInspectorUI/UserInterface/Images/Info.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIssuessvg">trunk/Source/WebInspectorUI/UserInterface/Images/Issues.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesIssuesEnabledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/IssuesEnabled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesLayerBorderssvg">trunk/Source/WebInspectorUI/UserInterface/Images/LayerBorders.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesLockedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Locked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesLogsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Log.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesLogssvg">trunk/Source/WebInspectorUI/UserInterface/Images/Logs.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesMinussvg">trunk/Source/WebInspectorUI/UserInterface/Images/Minus.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNativesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Native.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemCurleyBracessvg">trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemCurleyBraces.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemTrashsvg">trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTrash.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemTypessvg">trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTypes.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNetworksvg">trunk/Source/WebInspectorUI/UserInterface/Images/Network.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNewTabsvg">trunk/Source/WebInspectorUI/UserInterface/Images/NewTab.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesNewTabPlussvg">trunk/Source/WebInspectorUI/UserInterface/Images/NewTabPlus.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPaintFlashingsvg">trunk/Source/WebInspectorUI/UserInterface/Images/PaintFlashing.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPausesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Pause.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPausedBreakpointsvg">trunk/Source/WebInspectorUI/UserInterface/Images/PausedBreakpoint.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPencilsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Pencil.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPlus13svg">trunk/Source/WebInspectorUI/UserInterface/Images/Plus13.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPlus15svg">trunk/Source/WebInspectorUI/UserInterface/Images/Plus15.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesPseudoElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/PseudoElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesRecordsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Record.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReflectionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Reflection.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReloadFullsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ReloadFull.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReloadToolbarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ReloadToolbar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReplayPauseButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPauseButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReplayPlayButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPlayButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesReplayRecordingButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ReplayRecordingButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesRequestsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Request.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesResourcessvg">trunk/Source/WebInspectorUI/UserInterface/Images/Resources.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesResponsesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Response.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesResultLinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/ResultLine.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesResumesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Resume.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesSearchResultssvg">trunk/Source/WebInspectorUI/UserInterface/Images/SearchResults.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesShadowDOMsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ShadowDOM.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesSortIndicatorArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/SortIndicatorArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesSplitToggleUpsvg">trunk/Source/WebInspectorUI/UserInterface/Images/SplitToggleUp.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStepIntosvg">trunk/Source/WebInspectorUI/UserInterface/Images/StepInto.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStepOutsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StepOut.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStepOversvg">trunk/Source/WebInspectorUI/UserInterface/Images/StepOver.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStopsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Stop.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStoragesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Storage.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleAuthorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleAuthor.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInheritedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInherited.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInheritedElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInheritedElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInspectorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInspector.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleUsersvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUser.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleUserAgentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUserAgent.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextAlignCentersvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignCenter.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextAlignJustifysvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignJustify.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextAlignLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextAlignRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationLineThroughsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationLineThrough.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationOverlinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationOverline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationUnderlinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationUnderline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextTransformCapitalizesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformCapitalize.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextTransformLowercasesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformLowercase.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTextTransformUppercasesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformUppercase.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Time.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/Timeline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordAnimationsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordAnimation.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordCompositesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordComposite.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordConsoleProfilesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordConsoleProfile.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordEventsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordEvent.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordGarbageCollectionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordGarbageCollection.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordLayoutsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordLayout.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordPaintsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordPaint.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordProbeSampledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordProbeSampled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordRenderingFramesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordRenderingFrame.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordScriptEvaluatedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordScriptEvaluated.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordStylesvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordStyle.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordTimersvg">trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordTimer.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesToggleLeftSidebarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ToggleLeftSidebar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesToggleRightSidebarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/ToggleRightSidebar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeBooleansvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeBoolean.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeNullsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeNull.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeNumbersvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeNumber.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeObjectsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeObject.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeRegexsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeRegex.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeStringsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeString.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeSymbolsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeSymbol.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesTypeUndefinedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/TypeUndefined.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesUndocksvg">trunk/Source/WebInspectorUI/UserInterface/Images/Undock.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesUpDownArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/UpDownArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesUserInputPromptsvg">trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPrompt.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesUserInputPromptPrevioussvg">trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPromptPrevious.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesUserInputResultsvg">trunk/Source/WebInspectorUI/UserInterface/Images/UserInputResult.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesVisualStyleNonesvg">trunk/Source/WebInspectorUI/UserInterface/Images/VisualStyleNone.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesVisualStylePropertyLinkedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyLinked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesVisualStylePropertyUnlinkedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyUnlinked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesWarningsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Warning.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesWeightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/Weight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBackForwardArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BackForwardArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointActionAddsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionAdd.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointActionRemovesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionRemove.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointInactiveButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointInactiveButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Breakpoints.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCheckerssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Checkers.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCirclesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Circle.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkClearBothsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearBoth.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkClearLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkClearRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkClosesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Close.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCloseLargesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseLarge.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCloseWhitesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseWhite.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkConsolesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Console.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkContentFlowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ContentFlow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCrosshairsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Crosshair.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkCubicBeziersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CubicBezier.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMCharacterDatasvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMCharacterData.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMCommentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMComment.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMDocumentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocument.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMDocumentTypesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocumentType.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMNodesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMNode.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMTextNodesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMTextNode.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDebugsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debug.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDebuggersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debugger.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDisclosureTrianglessvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DisclosureTriangles.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDockBottomsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockBottom.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDockRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkDownloadArrowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DownloadArrow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkElementssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Elements.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Error.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Errors.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorsEnabledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ErrorsEnabled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkEventListenersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/EventListener.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkExceptionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Exception.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkEyesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Eye.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFilterFieldGlyphsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FilterFieldGlyph.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFloatLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFloatRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFontStyleItalicsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleItalic.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFontStyleNormalsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleNormal.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFontVariantSmallCapssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontVariantSmallCaps.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkFunctionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Function.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkGearsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Gear.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkGoToArrowsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/GoToArrow.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkHierarchicalNavigationItemChevronsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/HierarchicalNavigationItemChevron.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner1svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner1.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner10svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner10.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner11svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner11.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner12svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner12.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner2svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner2.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner3svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner3.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner4svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner4.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner5svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner5.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner6svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner6.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner7svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner7.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner8svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner8.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner9svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner9.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkInfosvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Info.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIssuessvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Issues.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkIssuesEnabledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IssuesEnabled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkLayerBorderssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/LayerBorders.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkLockedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Locked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkLogsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Log.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkLogssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Logs.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkMinussvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Minus.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNativesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Native.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemCurleyBracessvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemCurleyBraces.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemTrashsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTrash.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemTypessvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTypes.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNetworksvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Network.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNewTabsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTab.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkNewTabPlussvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTabPlus.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPaintFlashingsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PaintFlashing.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPausesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pause.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPausedBreakpointsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PausedBreakpoint.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPencilsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pencil.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPlus13svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus13.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPlus15svg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus15.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkPseudoElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PseudoElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkRecordsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Record.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReflectionsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Reflection.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReloadFullsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadFull.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReloadToolbarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadToolbar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayPauseButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPauseButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayPlayButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPlayButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayRecordingButtonsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayRecordingButton.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkRequestsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Request.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkResourcessvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resources.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkResponsesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Response.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkResultLinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ResultLine.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkResumesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resume.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkSearchResultssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SearchResults.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkShadowDOMsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ShadowDOM.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkSortIndicatorArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SortIndicatorArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkSplitToggleUpsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SplitToggleUp.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStepIntosvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepInto.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStepOutsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOut.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStepOversvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOver.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStopsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Stop.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStoragesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Storage.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleAuthorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleAuthor.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInheritedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInherited.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInheritedElementsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInheritedElement.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInspectorsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInspector.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleUsersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUser.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleUserAgentsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUserAgent.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignCentersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignCenter.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignJustifysvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignJustify.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignLeftsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignLeft.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignRightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignRight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationLineThroughsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationLineThrough.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationOverlinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationOverline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationUnderlinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationUnderline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformCapitalizesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformCapitalize.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformLowercasesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformLowercase.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformUppercasesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformUppercase.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Time.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelinesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Timeline.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordAnimationsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordAnimation.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordCompositesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordComposite.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordConsoleProfilesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordConsoleProfile.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordEventsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordEvent.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordLayoutsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordLayout.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordPaintsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordPaint.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordProbeSampledsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordProbeSampled.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordRenderingFramesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordRenderingFrame.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordScriptEvaluatedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordScriptEvaluated.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordStylesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordStyle.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordTimersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordTimer.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkToggleLeftSidebarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleLeftSidebar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkToggleRightSidebarsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleRightSidebar.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeBooleansvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeBoolean.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeNullsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNull.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeNumbersvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNumber.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeObjectsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeObject.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeRegexsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeRegex.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeStringsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeString.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeSymbolsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeSymbol.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeUndefinedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeUndefined.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkUndocksvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Undock.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkUpDownArrowssvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UpDownArrows.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputPromptsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPrompt.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputPromptPrevioussvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPromptPrevious.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputResultsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputResult.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStyleNonesvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStyleNone.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStylePropertyLinkedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyLinked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStylePropertyUnlinkedsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyUnlinked.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkWarningsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Warning.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceImagesgtkWeightsvg">trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Weight.svg</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsActivateButtonNavigationItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/ActivateButtonNavigationItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsButtonNavigationItemcss">trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsButtonNavigationItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsButtonToolbarItemcss">trunk/Source/WebInspectorUI/UserInterface/Views/ButtonToolbarItem.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsControlToolbarItemcss">trunk/Source/WebInspectorUI/UserInterface/Views/ControlToolbarItem.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsMultipleScopeBarItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/MultipleScopeBarItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsNavigationBarjs">trunk/Source/WebInspectorUI/UserInterface/Views/NavigationBar.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsNetworkSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/NetworkSidebarPanel.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsRadioButtonNavigationItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/RadioButtonNavigationItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeBarcss">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeBarItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBarItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeRadioButtonNavigationItemcss">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeRadioButtonNavigationItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTimelineSidebarPanelcss">trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTimelineSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsToggleButtonNavigationItemjs">trunk/Source/WebInspectorUI/UserInterface/Views/ToggleButtonNavigationItem.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTreeElementStatusButtoncss">trunk/Source/WebInspectorUI/UserInterface/Views/TreeElementStatusButton.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleCommaSeparatedKeywordEditorjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleDetailsPanelcss">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleDetailsPanel.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleKeywordIconListcss">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleKeywordIconListjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorLinkcss">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorLinkjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorSectioncss">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.css</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorSectionjs">trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.js</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/ChangeLog        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,3 +1,155 @@
</span><ins>+2015-10-27 Timothy Hatcher <timothy@apple.com>
+
+ Web Inspector: Remove image generators and use SVG directly
+ https://bugs.webkit.org/show_bug.cgi?id=150602
+
+ Reviewed by Brain Burg.
+
+ This removes the code used to generate button image states as various canvas bitmaps.
+ With the simplification of the UI in Yosemite, we can now just style SVG images to change
+ the color used by the glyphs in these images. To do that we use the special "currentColor"
+ color keyword. That keyword represents the current value of the applied CSS text color.
+ This approach was used since it works across shadow DOM boundaries, which are there with
+ our new use of the SVG <use> element to import glyphs. This allows us to eliminate the
+ "stroked" and "filled" classes that were used to style some images that used the old
+ wrappedSVGDocument image utility.
+
+ Some of the SVG images had to be recreated -- specifically the removal of <clipPath> and
+ <text> elements. Those elements do not work or work well with the <use> element. We can
+ now only use graphical elements like <path>, <rect>, <circle>, etc.
+
+ * UserInterface/Images/*.svg: Added id to the top level for most images. Use currentColor instead of black. Sorted attributes.
+ * UserInterface/Images/gtk/*.svg: Added id to the top level for most images. Filed bug 150603 to track adopting currentColor.
+
+ * UserInterface/Base/ImageUtilities.js:
+ (useSVGSymbol): Added.
+ (catch): Deleted.
+ (_devicePixelRatioChanged): Deleted.
+ (_registerGeneratedImageUpdateFunction): Deleted.
+ (_logSQLError): Deleted.
+ (_logSQLTransactionError): Deleted.
+ (_prefetchCachedImagesAndUpdate): Deleted.
+ (_prefetchCachedImagesAndUpdate.): Deleted.
+ (else.): Deleted.
+ (restoreImageFromStorage): Deleted.
+ (imageLoaded): Deleted.
+ (ensureImageIsLoaded): Deleted.
+ (restoreImages.restoreActiveImages): Deleted.
+ (restoreImages): Deleted.
+ (restoreImage): Deleted.
+ (update): Deleted.
+ (generateImages.generateActiveImages): Deleted.
+ (generateImages): Deleted.
+ (generateImage): Deleted.
+ (_drawImageShadow): Deleted.
+ (_invertMaskImage): Deleted.
+ (_applyImageMask): Deleted.
+ (generateEmbossedImages): Deleted.
+ (invokeCallbackWithDocument): Deleted.
+ (imageLoad): Deleted.
+ (imageError): Deleted.
+ (wrappedSVGDocument): Deleted.
+ * UserInterface/Views/ActivateButtonNavigationItem.js:
+ (WebInspector.ActivateButtonNavigationItem.prototype.set activated):
+ (WebInspector.ActivateButtonNavigationItem.prototype.generateStyleText): Deleted.
+ * UserInterface/Views/ButtonNavigationItem.css:
+ (.navigation-bar .item.button):
+ (.navigation-bar .item.button > .glyph):
+ (.navigation-bar .item.button:not(.disabled):active > .glyph):
+ (.navigation-bar .item.button:not(.disabled):matches(:focus, .activate.activated, .radio.selected) > .glyph):
+ (.navigation-bar .item.button:not(.disabled):active:matches(:focus, .activate.activated, .radio.selected) > .glyph):
+ (body.window-inactive .navigation-bar .item.button > .glyph):
+ (.navigation-bar .item.button.disabled > .glyph):
+ (body.window-inactive .navigation-bar .item.button.disabled > .glyph):
+ (.navigation-bar .item.button.text-only): Deleted.
+ (body.window-inactive .navigation-bar .item.button:not(.suppress-emboss) > .glyph): Deleted.
+ (body.window-inactive .navigation-bar .item.button.disabled:not(.suppress-emboss) > .glyph): Deleted.
+ (.navigation-bar .item.button.suppress-emboss): Deleted.
+ (.navigation-bar .item.button.suppress-emboss > .glyph): Deleted.
+ (.navigation-bar .item.button.suppress-emboss:active > .glyph): Deleted.
+ (.navigation-bar .item.button.suppress-emboss.disabled > .glyph): Deleted.
+ * UserInterface/Views/ButtonNavigationItem.js:
+ (WebInspector.ButtonNavigationItem.prototype.set image):
+ (WebInspector.ButtonNavigationItem): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype.get suppressBezel): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype.set suppressBezel): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype.generateStyleText): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype._canvasIdentifier): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype._updateImage): Deleted.
+ (WebInspector.ButtonNavigationItem.prototype._generateImages): Deleted.
+ * UserInterface/Views/ButtonToolbarItem.css:
+ (.toolbar .item.button > .glyph):
+ (.toolbar .item.button:not(.disabled):active > .glyph):
+ * UserInterface/Views/ControlToolbarItem.css:
+ (.toolbar .item.control):
+ (.toolbar .item.control:hover):
+ * UserInterface/Views/MultipleScopeBarItem.js:
+ (WebInspector.MultipleScopeBarItem):
+ * UserInterface/Views/NavigationBar.js:
+ (WebInspector.NavigationBar.prototype.updateLayoutSoon.update):
+ (WebInspector.NavigationBar.prototype.updateLayoutSoon):
+ (WebInspector.NavigationBar): Deleted.
+ (WebInspector.NavigationBar.prototype.insertNavigationItem): Deleted.
+ (WebInspector.NavigationBar.prototype.removeNavigationItem): Deleted.
+ (WebInspector.NavigationBar.prototype.updateLayout): Deleted.
+ (WebInspector.NavigationBar.prototype._updateStyle): Deleted.
+ * UserInterface/Views/NetworkSidebarPanel.js:
+ (WebInspector.NetworkSidebarPanel.prototype.treeElementAddedOrChanged):
+ * UserInterface/Views/RadioButtonNavigationItem.js:
+ (WebInspector.RadioButtonNavigationItem.prototype.set active):
+ (WebInspector.RadioButtonNavigationItem.prototype.generateStyleText): Deleted.
+ * UserInterface/Views/ScopeBar.css:
+ (.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows):
+ (.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .filled): Deleted.
+ (.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .stroked): Deleted.
+ * UserInterface/Views/ScopeBarItem.js:
+ (WebInspector.ScopeBarItem):
+ * UserInterface/Views/ScopeRadioButtonNavigationItem.css:
+ (.scope-radio-button-navigation-item:hover > .arrows):
+ (.scope-radio-button-navigation-item.selected > .arrows > svg .stroked): Deleted.
+ * UserInterface/Views/ScopeRadioButtonNavigationItem.js:
+ (WebInspector.ScopeRadioButtonNavigationItem):
+ * UserInterface/Views/TimelineSidebarPanel.css:
+ (.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple .arrows):
+ (.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .filled): Deleted.
+ (.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .stroked): Deleted.
+ * UserInterface/Views/TimelineSidebarPanel.js:
+ (WebInspector.TimelineSidebarPanel.prototype.treeElementAddedOrChanged):
+ (WebInspector.TimelineSidebarPanel.prototype._timelineAdded):
+ * UserInterface/Views/ToggleButtonNavigationItem.js:
+ (WebInspector.ToggleButtonNavigationItem): Deleted.
+ * UserInterface/Views/TreeElementStatusButton.css:
+ (.item > .status > .status-button):
+ (:matches(:focus, .force-focus) .item.selected > .status > .status-button):
+ (.item > .status > .status-button > svg .filled): Deleted.
+ (:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .filled): Deleted.
+ (.item > .status > .status-button > svg .stroked): Deleted.
+ (:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .stroked): Deleted.
+ * UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js:
+ (WebInspector.VisualStyleCommaSeparatedKeywordEditor):
+ * UserInterface/Views/VisualStyleDetailsPanel.css:
+ (.sidebar > .panel.details.css-style .visual > .details-section .details-section > .header > .visual-style-section-clear):
+ * UserInterface/Views/VisualStyleKeywordIconList.css:
+ (.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected):
+ (.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon:not(.selected) > div):
+ (.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .stroked): Deleted.
+ (.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .filled): Deleted.
+ * UserInterface/Views/VisualStyleKeywordIconList.js:
+ (WebInspector.VisualStyleKeywordIconList.createListItem):
+ (WebInspector.VisualStyleKeywordIconList):
+ * UserInterface/Views/VisualStylePropertyEditorLink.css:
+ (.visual-style-property-editor-link > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon)):
+ (.visual-style-property-editor-link:not(.linked) > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon)):
+ (.visual-style-property-editor-link > .visual-style-property-editor-link-icon): Deleted.
+ (.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .filled): Deleted.
+ (.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .stroked): Deleted.
+ * UserInterface/Views/VisualStylePropertyEditorLink.js:
+ (WebInspector.VisualStylePropertyEditorLink):
+ * UserInterface/Views/VisualStyleSelectorSection.css:
+ (.details-section.visual-style-selector-section > .header > .controls > .visual-style-selector-section-add-rule):
+ * UserInterface/Views/VisualStyleSelectorSection.js:
+ (WebInspector.VisualStyleSelectorSection):
+
</ins><span class="cx"> 2015-10-28 Timothy Hatcher <timothy@apple.com>
</span><span class="cx">
</span><span class="cx"> Web Inspector: jsmin.py mistakenly removes whitespace from template literal strings
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceBaseImageUtilitiesjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Base/ImageUtilities.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Base/ImageUtilities.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/ImageUtilities.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2013 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2013, 2015 Apple Inc. All rights reserved.
</ins><span class="cx"> *
</span><span class="cx"> * Redistribution and use in source and binary forms, with or without
</span><span class="cx"> * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -23,451 +23,31 @@
</span><span class="cx"> * THE POSSIBILITY OF SUCH DAMAGE.
</span><span class="cx"> */
</span><span class="cx">
</span><del>-// Bump this version when making changes that affect the storage format.
-const _imageStorageFormatVersion = 1;
-
-// Use as a default where an image version is not otherwise specified.
-// Bump the base version when making changes that affect the result image.
-const baseDefaultImageVersion = 7;
-const defaultImageVersion = baseDefaultImageVersion + 0.01 * WebInspector.Platform.version.base + 0.0001 * WebInspector.Platform.version.release;
-
-try {
- var _generatedImageCacheDatabase = openDatabase("com.apple.WebInspector", 1, "Web Inspector Storage Database", 5 * 1024 * 1024);
-} catch (e) {
- // If we can't open the database it isn't the end of the world, we just will always generate
- // the images and not cache them for better load times.
- console.warn("Can't open database due to: " + e + ". Images will be generated instead of loaded from cache.");
-}
-
-var _initialPrefetchComplete = false;
-var _fetchedCachedImages = {};
-
-var _generatedImageUpdateFunctions = [];
-
-_prefetchCachedImagesAndUpdate();
-
-// Updates each image when the device pixel ratio changes to redraw at the new resolution.
-window.matchMedia("(-webkit-device-pixel-ratio: 1)").addListener(_devicePixelRatioChanged);
-
-function _devicePixelRatioChanged()
</del><ins>+function useSVGSymbol(url, className, title)
</ins><span class="cx"> {
</span><del>- _prefetchCachedImagesAndUpdate();
-}
</del><ins>+ const svgNamespace = "http://www.w3.org/2000/svg";
+ const xlinkNamespace = "http://www.w3.org/1999/xlink";
</ins><span class="cx">
</span><del>-function _registerGeneratedImageUpdateFunction(update)
-{
- console.assert(typeof update === "function");
</del><ins>+ let svgElement = document.createElementNS(svgNamespace, "svg");
+ svgElement.setAttribute("width", "100%");
+ svgElement.setAttribute("height", "100%");
</ins><span class="cx">
</span><del>- _generatedImageUpdateFunctions.push(update);
</del><ins>+ // URL must contain a fragment reference to a graphical element, like a symbol. If none is given
+ // append #root which all of our SVGs have on the top level <svg> element.
+ if (!url.includes("#"))
+ url += "#root";
</ins><span class="cx">
</span><del>- if (_initialPrefetchComplete)
- update();
-}
</del><ins>+ let useElement = document.createElementNS(svgNamespace, "use");
+ useElement.setAttributeNS(xlinkNamespace, "xlink:href", url);
+ svgElement.appendChild(useElement);
</ins><span class="cx">
</span><del>-function _logSQLError(tx, error)
-{
- console.error(error.code, error.message);
-}
</del><ins>+ let wrapper = document.createElement("div");
+ wrapper.appendChild(svgElement);
</ins><span class="cx">
</span><del>-function _logSQLTransactionError(error)
-{
- console.error(error.code, error.message);
-}
</del><ins>+ if (className)
+ wrapper.setAttribute("class", className); // Can't use className property since this is the SVG DOM.
+ if (title)
+ wrapper.setAttribute("title", title); // Can't use title property since this is the SVG DOM.
</ins><span class="cx">
</span><del>-function _prefetchCachedImagesAndUpdate()
-{
- _fetchedCachedImages = {};
-
- function complete()
- {
- _initialPrefetchComplete = true;
-
- for (var i = 0; i < _generatedImageUpdateFunctions.length; ++i)
- _generatedImageUpdateFunctions[i]();
- }
-
- if (!_generatedImageCacheDatabase) {
- complete();
- return;
- }
-
- _generatedImageCacheDatabase.transaction(function(tx) {
- tx.executeSql("SELECT key, imageVersion, data FROM CachedImages WHERE pixelRatio = ? AND formatVersion = ?", [window.devicePixelRatio, _imageStorageFormatVersion], function(tx, result) {
- for (var i = 0; i < result.rows.length; ++i) {
- var row = result.rows.item(i);
- _fetchedCachedImages[row.key] = {data: row.data, imageVersion: row.imageVersion};
- }
-
- complete();
- }, function(tx, error) {
- // The select failed. That could be because the schema changed or this is the first time.
- // Drop the table and recreate it fresh.
-
- tx.executeSql("DROP TABLE IF EXISTS CachedImages");
- tx.executeSql("CREATE TABLE CachedImages (key TEXT, pixelRatio INTEGER, formatVersion NUMERIC, imageVersion NUMERIC, data BLOB, UNIQUE(key, pixelRatio))", [], null, _logSQLError);
-
- complete();
- });
- }, _logSQLTransactionError);
</del><ins>+ return wrapper;
</ins><span class="cx"> }
</span><del>-
-function saveImageToStorage(storageKey, context, width, height, imageVersion)
-{
- console.assert(storageKey);
- console.assert(context);
- console.assert(typeof width === "number");
- console.assert(typeof height === "number");
- console.assert(typeof imageVersion === "number");
-
- if (!_generatedImageCacheDatabase)
- return;
-
- var imageData = context.getImageData(0, 0, width, height);
- var imageDataPixels = new Uint32Array(imageData.data.buffer);
-
- var imageDataString = "";
- for (var i = 0; i < imageDataPixels.length; ++i)
- imageDataString += (i ? ":" : "") + (imageDataPixels[i] ? imageDataPixels[i].toString(36) : "");
-
- _generatedImageCacheDatabase.transaction(function(tx) {
- tx.executeSql("INSERT OR REPLACE INTO CachedImages (key, pixelRatio, imageVersion, formatVersion, data) VALUES (?, ?, ?, ?, ?)", [storageKey, window.devicePixelRatio, imageVersion, _imageStorageFormatVersion, imageDataString], null, _logSQLError);
- }, _logSQLTransactionError);
-}
-
-function restoreImageFromStorage(storageKey, context, width, height, imageVersion, generateCallback)
-{
- console.assert(storageKey);
- console.assert(context);
- console.assert(typeof width === "number");
- console.assert(typeof height === "number");
- console.assert(typeof imageVersion === "number");
- console.assert(typeof generateCallback === "function");
-
- if (!_generatedImageCacheDatabase) {
- generateCallback();
- return;
- }
-
- var imageInfo = _fetchedCachedImages[storageKey];
-
- if (imageInfo) {
- // We only want to keep the data around for the first use. These images
- // are typically only used in one place. This keeps performance good
- // during page load and frees memory that typically won't be reused.
- delete _fetchedCachedImages[storageKey];
- }
-
- if (imageInfo && (!imageInfo.data || imageInfo.imageVersion !== imageVersion)) {
- generateCallback();
- return;
- }
-
- if (imageInfo) {
- // Restore the image from the memory cache.
- restoreImageData(imageInfo.data);
- } else {
- // Try fetching the image data from the database.
- _generatedImageCacheDatabase.readTransaction(function(tx) {
- tx.executeSql("SELECT data FROM CachedImages WHERE key = ? AND pixelRatio = ? AND imageVersion = ? AND formatVersion = ?", [storageKey, window.devicePixelRatio, imageVersion, _imageStorageFormatVersion], function(tx, result) {
- if (!result.rows.length) {
- generateCallback();
- return;
- }
-
- console.assert(result.rows.length === 1);
-
- restoreImageData(result.rows.item(0).data);
- }, function(tx, error) {
- _logSQLError(tx, error);
-
- generateCallback();
- });
- }, _logSQLTransactionError);
- }
-
- function restoreImageData(imageDataString)
- {
- var imageData = context.createImageData(width, height);
- var imageDataPixels = new Uint32Array(imageData.data.buffer);
-
- var imageDataArray = imageDataString.split(":");
- if (imageDataArray.length !== imageDataPixels.length) {
- generateCallback();
- return;
- }
-
- for (var i = 0; i < imageDataArray.length; ++i) {
- var pixelString = imageDataArray[i];
- imageDataPixels[i] = pixelString ? parseInt(pixelString, 36) : 0;
- }
-
- context.putImageData(imageData, 0, 0);
- }
-}
-
-function generateEmbossedImages(src, width, height, states, canvasIdentifierCallback, ignoreCache)
-{
- console.assert(src);
- console.assert(typeof width === "number");
- console.assert(typeof height === "number");
- console.assert(states);
- console.assert(states.Normal);
- console.assert(states.Active);
- console.assert(typeof canvasIdentifierCallback === "function");
-
- var scaleFactor = window.devicePixelRatio;
- var scaledWidth = width * scaleFactor;
- var scaledHeight = height * scaleFactor;
-
- const imageVersion = defaultImageVersion;
-
- const storageKeyPrefix = "generated-embossed-image-";
-
- var image = null;
- var pendingImageLoadCallbacks = [];
-
- _registerGeneratedImageUpdateFunction(update);
-
- function imageLoaded()
- {
- console.assert(image);
- console.assert(image.complete);
- for (var i = 0; i < pendingImageLoadCallbacks.length; ++i)
- pendingImageLoadCallbacks[i]();
- pendingImageLoadCallbacks = null;
- }
-
- function ensureImageIsLoaded(callback)
- {
- if (image && image.complete) {
- callback();
- return;
- }
-
- console.assert(pendingImageLoadCallbacks);
- pendingImageLoadCallbacks.push(callback);
-
- if (image)
- return;
-
- image = document.createElement("img");
- image.addEventListener("load", imageLoaded);
- image.width = width;
- image.height = height;
- image.src = src;
- }
-
- function restoreImages()
- {
- restoreImage(states.Normal);
- if (states.Focus)
- restoreImage(states.Focus);
-
- function restoreActiveImages()
- {
- restoreImage(states.Active);
- if (states.ActiveFocus)
- restoreImage(states.ActiveFocus);
- }
-
- // Delay restoring the active states until later to improve the initial page load time.
- setTimeout(restoreActiveImages, 500);
- }
-
- function restoreImage(state)
- {
- const storageKey = storageKeyPrefix + canvasIdentifierCallback(state);
- const context = document.getCSSCanvasContext("2d", canvasIdentifierCallback(state), scaledWidth, scaledHeight);
- restoreImageFromStorage(storageKey, context, scaledWidth, scaledHeight, imageVersion, function() {
- ensureImageIsLoaded(generateImage.bind(null, state));
- });
- }
-
- function update()
- {
- if (ignoreCache)
- generateImages();
- else
- restoreImages();
- }
-
- function generateImages()
- {
- ensureImageIsLoaded(generateImage.bind(null, states.Normal));
-
- if (states.Focus)
- ensureImageIsLoaded(generateImage.bind(null, states.Focus));
-
- function generateActiveImages()
- {
- ensureImageIsLoaded(generateImage.bind(null, states.Active));
-
- if (states.ActiveFocus)
- ensureImageIsLoaded(generateImage.bind(null, states.ActiveFocus));
- }
-
- // Delay generating the active states until later to improve the initial page load time.
- setTimeout(generateActiveImages, 500);
- }
-
- function generateImage(state)
- {
- const context = document.getCSSCanvasContext("2d", canvasIdentifierCallback(state), scaledWidth, scaledHeight);
- context.save();
- context.scale(scaleFactor, scaleFactor);
-
- context.clearRect(0, 0, width, height);
-
- var gradient = context.createLinearGradient(0, 0, 0, height);
- if (state === states.Active) {
- gradient.addColorStop(0, "rgb(65, 65, 65)");
- gradient.addColorStop(1, "rgb(70, 70, 70)");
- } else if (state === states.Focus) {
- gradient.addColorStop(0, "rgb(0, 123, 247)");
- gradient.addColorStop(1, "rgb(0, 128, 252)");
- } else if (state === states.ActiveFocus) {
- gradient.addColorStop(0, "rgb(0, 62, 210)");
- gradient.addColorStop(1, "rgb(0, 67, 215)");
- } else {
- gradient.addColorStop(0, "rgb(75, 75, 75)");
- gradient.addColorStop(1, "rgb(80, 80, 80)");
- }
-
- context.fillStyle = gradient;
- context.fillRect(0, 0, width, height);
-
- // Apply the mask to keep just the inner shape of the glyph.
- _applyImageMask(context, image);
-
- if (!ignoreCache) {
- const storageKey = storageKeyPrefix + canvasIdentifierCallback(state);
- saveImageToStorage(storageKey, context, scaledWidth, scaledHeight, imageVersion);
- }
-
- context.restore();
- }
-
- function _drawImageShadow(context, xOffset, yOffset, blur, color, image) {
- context.save();
-
- context.shadowOffsetX = xOffset || 0;
- context.shadowOffsetY = yOffset || 0;
- context.shadowBlur = blur || 0;
- context.shadowColor = color || "black";
-
- context.drawImage(image, 0, 0, width, height);
-
- context.restore();
- }
-
- function _invertMaskImage(image, red, green, blue) {
- var bufferCanvas = document.createElement("canvas");
- bufferCanvas.width = scaledWidth;
- bufferCanvas.height = scaledHeight;
-
- var buffer = bufferCanvas.getContext("2d");
- buffer.scale(scaleFactor, scaleFactor);
- buffer.drawImage(image, 0, 0, width, height);
-
- var imageData = buffer.getImageData(0, 0, scaledWidth, scaledHeight);
- var imageDataPixels = new Uint32Array(imageData.data.buffer);
-
- red = red || 0;
- green = green || 0;
- blue = blue || 0;
-
- var isLittleEndian = Uint32Array.isLittleEndian();
-
- for (var i = 0; i < imageDataPixels.length; ++i) {
- if (isLittleEndian) {
- var existingAlpha = 0xff & (imageDataPixels[i] >> 24);
- imageDataPixels[i] = red | green << 8 | blue << 16 | (255 - existingAlpha) << 24;
- } else {
- var existingAlpha = 0xff & imageDataPixels[i];
- imageDataPixels[i] = red << 24 | green << 16 | blue << 8 | 255 - existingAlpha;
- }
- }
-
- buffer.putImageData(imageData, 0, 0);
-
- return bufferCanvas;
- }
-
- function _applyImageMask(context, image) {
- var maskCanvas = document.createElement("canvas");
- maskCanvas.width = scaledWidth;
- maskCanvas.height = scaledHeight;
-
- var mask = maskCanvas.getContext("2d");
- mask.scale(scaleFactor, scaleFactor);
- mask.drawImage(image, 0, 0, width, height);
-
- var imageData = context.getImageData(0, 0, scaledWidth, scaledHeight);
- var imageDataPixels = imageData.data;
-
- var maskImageDataPixels = mask.getImageData(0, 0, scaledWidth, scaledHeight).data;
-
- for (var i = 3; i < imageDataPixels.length; i += 4)
- imageDataPixels[i] = maskImageDataPixels[i] * (imageDataPixels[i] / 255);
-
- context.putImageData(imageData, 0, 0);
- }
-}
-
-var svgImageCache = {};
-
-function loadSVGImageDocumentElement(url, callback)
-{
- function invokeCallbackWithDocument(svgText) {
- var parser = new DOMParser;
- var doc = parser.parseFromString(svgText, "image/svg+xml");
- callback(doc.documentElement);
- }
-
- function imageLoad(event) {
- if (xhr.status === 0 || xhr.status === 200) {
- var svgText = xhr.responseText;
- svgImageCache[url] = svgText;
- invokeCallbackWithDocument(svgText);
- } else {
- console.error("Unexpected XHR status (" + xhr.status + ") loading SVG image: " + url);
- callback(null);
- }
- }
-
- function imageError(event) {
- console.error("Unexpected failure loading SVG image: " + url);
- callback(null);
- }
-
- var cachedSVGText = svgImageCache[url];
- if (cachedSVGText) {
- invokeCallbackWithDocument(cachedSVGText);
- return;
- }
-
- var xhr = new XMLHttpRequest;
- xhr.open("GET", url, true);
- xhr.addEventListener("load", imageLoad);
- xhr.addEventListener("error", imageError);
- xhr.send();
-}
-
-function wrappedSVGDocument(url, className, title, callback)
-{
- loadSVGImageDocumentElement(url, function(svgDocument) {
- if (!svgDocument) {
- callback(null);
- return;
- }
-
- var wrapper = document.createElement("div");
- if (className)
- wrapper.className = className;
- if (title)
- wrapper.title = title;
- wrapper.appendChild(svgDocument);
-
- callback(wrapper);
- });
-}
</del></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBackForwardArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/BackForwardArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/BackForwardArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/BackForwardArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 10 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span><span class="lines">@@ -10,14 +10,6 @@
</span><span class="cx"> display: initial;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- path {
- fill: inherit;
- }
-
- svg[id $= "-mask"] {
- fill: black;
- }
-
</del><span class="cx"> svg[id $= "-normal"] {
</span><span class="cx"> fill: hsl(0, 0%, 33%);
</span><span class="cx"> }
</span><span class="lines">@@ -28,15 +20,15 @@
</span><span class="cx"> </style>
</span><span class="cx">
</span><span class="cx"> <defs>
</span><del>- <path id="back-arrow-path" d="M 3.20540064 7.75983283 L 9.3448 1.6244 L 7.7388 0.0174 L -0.0002 7.7514 L 0.0091993759 7.76080523 L 0.0018 7.7682 L 7.7358 15.5072 L 9.3428 13.9012 L 3.20540064 7.75983283 Z"/>
- <path id="forward-arrow-path" d="M 6.13924933 7.75978283 L 0.0018 13.9012 L 1.6088 15.5072 L 9.3428 7.7682 L 9.33545066 7.76085523 L 9.3449 7.7514 L 1.6059 0.0174 L -0.0001 1.6244 L 6.13924933 7.75978283 Z"/>
</del><ins>+ <symbol id="back-arrow-symbol" viewBox="0 0 10 16"><path fill="inherit" d="M 3.20540064 7.75983283 L 9.3448 1.6244 L 7.7388 0.0174 L -0.0002 7.7514 L 0.0091993759 7.76080523 L 0.0018 7.7682 L 7.7358 15.5072 L 9.3428 13.9012 L 3.20540064 7.75983283 Z"/></symbol>
+ <symbol id="forward-arrow-symbol" viewBox="0 0 10 16"><path fill="inherit" d="M 6.13924933 7.75978283 L 0.0018 13.9012 L 1.6088 15.5072 L 9.3428 7.7682 L 9.33545066 7.76085523 L 9.3449 7.7514 L 1.6059 0.0174 L -0.0001 1.6244 L 6.13924933 7.75978283 Z"/></symbol>
</ins><span class="cx"> </defs>
</span><span class="cx">
</span><del>- <svg id="back-arrow-mask"><use xlink:href="#back-arrow-path"/></svg>
- <svg id="back-arrow-normal"><use xlink:href="#back-arrow-path"/></svg>
- <svg id="back-arrow-active"><use xlink:href="#back-arrow-path"/></svg>
</del><ins>+ <svg id="back-arrow-mask"><use fill="currentColor" xlink:href="#back-arrow-symbol"/></svg>
+ <svg id="back-arrow-normal"><use xlink:href="#back-arrow-symbol"/></svg>
+ <svg id="back-arrow-active"><use xlink:href="#back-arrow-symbol"/></svg>
</ins><span class="cx">
</span><del>- <svg id="forward-arrow-mask"><use xlink:href="#forward-arrow-path"/></svg>
- <svg id="forward-arrow-normal"><use xlink:href="#forward-arrow-path"/></svg>
- <svg id="forward-arrow-active"><use xlink:href="#forward-arrow-path"/></svg>
</del><ins>+ <svg id="forward-arrow-mask"><use fill="currentColor" xlink:href="#forward-arrow-symbol"/></svg>
+ <svg id="forward-arrow-normal"><use xlink:href="#forward-arrow-symbol"/></svg>
+ <svg id="forward-arrow-active"><use xlink:href="#forward-arrow-symbol"/></svg>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBreakpointActionAddsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionAdd.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionAdd.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionAdd.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path stroke="rgb(241, 242, 243)" stroke-width="2" d="M 4 9 L 12 9 M 8 5 L 8 13"/>
</span><span class="cx"> <path stroke="rgb(129, 129, 129)" stroke-width="2" d="M 4 8 L 12 8 M 8 4 L 8 12"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBreakpointActionRemovesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionRemove.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionRemove.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointActionRemove.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path stroke="rgb(241, 242, 243)" stroke-width="2" d="M 12 9 L 4 9"/>
</span><span class="cx"> <path stroke="rgb(129, 129, 129)" stroke-width="2" d="M 12 8 L 4 8"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBreakpointButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 12">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 21 12">
</ins><span class="cx"> <path fill="rgba(255, 255, 255, 0.33)" d="M 17 12 L 0 12 L 0 1 L 17 1 L 21 6.5 Z"/>
</span><span class="cx"> <path fill="rgb(34, 111, 176)" d="M 17 11 L 0 11 L 0 0 L 17 0 L 21 5.5 Z"/>
</span><span class="cx"> <path fill="rgb(100, 154, 201)" d="M 1 10 C 1 8.515625 1 2.484375 1 1 C 2.714844 1 15.585938 1 16.488281 1 C 16.941406 1.621094 19.136719 4.640625 19.761719 5.5 C 19.136719 6.359375 16.941406 9.378906 16.488281 10 C 15.585938 10 2.714844 10 1 10"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBreakpointInactiveButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointInactiveButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointInactiveButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/BreakpointInactiveButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 12">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 21 12">
</ins><span class="cx"> <path fill="rgba(255, 255, 255, 0.33)" d="M 17 12 L 0 12 L 0 1 L 17 1 L 21 6.5 Z"/>
</span><span class="cx"> <path fill="rgb(134, 134, 134)" d="M 17 11 L 0 11 L 0 0 L 17 0 L 21 5.5 Z"/>
</span><span class="cx"> <path fill="rgb(172, 174, 176)" d="M 1 10 C 1 8.515625 1 2.484375 1 1 C 2.714844 1 15.585938 1 16.488281 1 C 16.941406 1.621094 19.136719 4.640625 19.761719 5.5 C 19.136719 6.359375 16.941406 9.378906 16.488281 10 C 15.585938 10 2.714844 10 1 10"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesBreakpointssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Breakpoints.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Breakpoints.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Breakpoints.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <clipPath id="1">
- <path d="M 0 3 L 0 12 L 10.5 12 L 15 7.5 L 10.5 3 L 0 3 L 0 3 Z"/>
- </clipPath>
- <path fill="none" stroke="black" stroke-width="2" clip-path="url(#1)" d="M 0 3 L 0 12 L 10.5 12 L 15 7.5 L 10.5 3 L 0 3 L 0 3 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 0.5 3.5 L 0.5 11.5 L 10.5 11.5 L 14.5 7.5 L 10.5 3.5 L 0.5 3.5 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCheckerssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Checkers.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Checkers.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Checkers.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,25 +1,6 @@
</span><del>-<!--
- * Copyright (C) 2014 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.
--->
-<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" fill="rgb(204, 204, 204)"><rect width="3" height="3" /><rect x="3" y="3" width="3" height="3"/></svg>
</del><ins>+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright © 2015 Apple Inc. All rights reserved. -->
+<svg id="root" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 6">
+ <rect fill="rgb(204, 204, 204)" width="3" height="3"/>
+ <rect fill="rgb(204, 204, 204)" x="3" y="3" width="3" height="3"/>
+</svg>
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCirclesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Circle.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Circle.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Circle.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <circle cx="6.5" cy="6.5" r="4"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <circle fill="currentColor" cx="6.5" cy="6.5" r="4"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesClearBothsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ClearBoth.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ClearBoth.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ClearBoth.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,13 +1,13 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <rect class="stroked" x="0.5" y="1.5" width="3.5" height="12" fill="transparent" stroke="black" />
- <polygon class="filled" points="0.5 3.5 0.5 5.5 4 3.5 4 1.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="0.5 7.5 0.5 9.5 4 7.5 4 5.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="0.5 11.5 0.5 13.5 4 11.5 4 9.5" stroke="none" style="opacity: 0.7" />
- <rect class="stroked" x="12" y="1.5" width="3.5" height="12" fill="transparent" stroke="black" />
- <polygon class="filled" points="12 3.5 12 5.5 15.5 3.5 15.5 1.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="12 7.5 12 9.5 15.5 7.5 15.5 5.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="12 11.5 12 13.5 15.5 11.5 15.5 9.5" stroke="none" style="opacity: 0.7" />
- <rect class="stroked" x="5.5" y="5" width="5" height="5" fill="none" stroke="black" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="1.5" width="3.5" height="12"/>
+ <polygon fill="currentColor" opacity="0.7" points="0.5 3.5 0.5 5.5 4 3.5 4 1.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="0.5 7.5 0.5 9.5 4 7.5 4 5.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="0.5 11.5 0.5 13.5 4 11.5 4 9.5"/>
+ <rect fill="none" stroke="currentColor" x="12" y="1.5" width="3.5" height="12"/>
+ <polygon fill="currentColor" opacity="0.7" points="12 3.5 12 5.5 15.5 3.5 15.5 1.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="12 7.5 12 9.5 15.5 7.5 15.5 5.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="12 11.5 12 13.5 15.5 11.5 15.5 9.5"/>
+ <rect fill="none" stroke="currentColor" x="5.5" y="5" width="5" height="5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesClearLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ClearLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ClearLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ClearLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <rect class="stroked" x="2" y="1.5" width="5" height="12" fill="none" stroke="black" />
- <polygon class="filled" points="2 3.5 2 5.5 7 3.5 7 1.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="2 7.5 2 9.5 7 7.5 7 5.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="2 11.5 2 13.5 7 11.5 7 9.5" stroke="none" style="opacity: 0.7" />
- <rect class="stroked" x="9" y="5" width="5" height="5" fill="none" stroke="black" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="2" y="1.5" width="5" height="12"/>
+ <polygon fill="currentColor" opacity="0.7" points="2 3.5 2 5.5 7 3.5 7 1.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="2 7.5 2 9.5 7 7.5 7 5.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="2 11.5 2 13.5 7 11.5 7 9.5"/>
+ <rect fill="none" stroke="currentColor" x="9" y="5" width="5" height="5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesClearRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ClearRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ClearRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ClearRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <rect class="stroked" x="9" y="1.5" width="5" height="12" fill="none" stroke="black" />
- <polygon class="filled" points="9 3.5 9 5.5 14 3.5 14 1.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="9 7.5 9 9.5 14 7.5 14 5.5" stroke="none" style="opacity: 0.7" />
- <polygon class="filled" points="9 11.5 9 13.5 14 11.5 14 9.5" stroke="none" style="opacity: 0.7" />
- <rect class="stroked" x="2" y="5" width="5" height="5" fill="none" stroke="black" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="9" y="1.5" width="5" height="12"/>
+ <polygon fill="currentColor" opacity="0.7" points="9 3.5 9 5.5 14 3.5 14 1.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="9 7.5 9 9.5 14 7.5 14 5.5"/>
+ <polygon fill="currentColor" opacity="0.7" points="9 11.5 9 13.5 14 11.5 14 9.5"/>
+ <rect fill="none" stroke="currentColor" x="2" y="5" width="5" height="5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesClosesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Close.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Close.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Close.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14">
- <path class="stroked" fill="none" stroke="black" stroke-linecap="square" d="M 4.5 4.5 L 11.5 11.5 M 4.5 11.5 L 11.5 4.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 4.5 4.5 L 11.5 11.5 M 4.5 11.5 L 11.5 4.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCloseLargesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/CloseLarge.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/CloseLarge.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/CloseLarge.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path class="stroked" fill="none" stroke="black" stroke-linecap="square" d="M 2.5 2.5 L 13.5 13.5 M 2.5 13.5 L 13.5 2.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 2.5 2.5 L 13.5 13.5 M 2.5 13.5 L 13.5 2.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCloseWhitesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/CloseWhite.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/CloseWhite.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/CloseWhite.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
</ins><span class="cx"> <path fill="white" d="M 12.949219 10.535156 L 11.535156 11.949219 L 8 8.414062 L 4.464844 11.949219 L 3.050781 10.535156 L 6.585938 7 L 3.050781 3.464844 L 4.464844 2.050781 L 8 5.585938 L 11.535156 2.050781 L 12.949219 3.464844 L 9.414062 7 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesConsolesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Console.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Console.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Console.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect x="0.5" y="0.5" width="15" height="15" rx="2" class="stroked" fill="none" stroke="black"/>
- <path d="M 4 4 L 8 8 L 4 12" class="stroked" fill="none" stroke="black"/>
- <path d="M 8 4.5 L 12 4.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 10 8 L 12 8" class="stroked" fill="none" stroke="black"/>
- <path d="M 8 11.5 L 12 11.5" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="0.5" width="15" height="15" rx="2"/>
+ <path fill="none" stroke="currentColor" d="M 4 4 L 8 8 L 4 12"/>
+ <path fill="none" stroke="currentColor" d="M 8 4.5 L 12 4.5"/>
+ <path fill="none" stroke="currentColor" d="M 10 8 L 12 8"/>
+ <path fill="none" stroke="currentColor" d="M 8 11.5 L 12 11.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesContentFlowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ContentFlow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ContentFlow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ContentFlow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Adobe Systems Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(112, 112, 112)" d="M 13.179 0.75 H 2.821 c -1.141 0 -2.071 0.931 -2.071 2.071 v 10.357 c 0 1.141 0.931 2.071 2.071 2.071 h 10.357 c 1.141 0 2.071 -0.931 2.071 -2.071 V 2.821 C 15.25 1.681 14.319 0.75 13.179 0.75 M 13.179 1.785 c 0.57 0 1.035 0.466 1.035 1.036 v 10.357 c 0 0.57 -0.465 1.035 -1.035 1.035 H 2.821 c -0.57 0 -1.036 -0.465 -1.036 -1.035 V 2.821 c 0 -0.57 0.465 -1.036 1.036 -1.036 H 13.179"/>
</span><del>- <rect x="2.676" y="2.967" fill="rgb(112, 112, 112)" width="4.854" height="4.094"/>
- <rect x="2.676" y="8.497" fill="rgb(112, 112, 112)" width="2.755" height="4.35"/>
- <rect x="8.891" y="2.967" fill="rgb(112, 112, 112)" width="4.412" height="10.108"/>
</del><ins>+ <rect fill="rgb(112, 112, 112)" x="2.676" y="2.967" width="4.854" height="4.094"/>
+ <rect fill="rgb(112, 112, 112)" x="2.676" y="8.497" width="2.755" height="4.35"/>
+ <rect fill="rgb(112, 112, 112)" x="8.891" y="2.967" width="4.412" height="10.108"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCrosshairsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Crosshair.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Crosshair.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Crosshair.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <circle class="stroked" fill="none" stroke="black" cx="8" cy="8" r="6"/>
- <path class="stroked" fill="none" stroke="black" d="M 8 0 L 8 6.5"/>
- <path class="stroked" fill="none" stroke="black" d="M 0 8 L 6.5 8"/>
- <path class="stroked" fill="none" stroke="black" d="M 8 9.5 L 8 16"/>
- <path class="stroked" fill="none" stroke="black" d="M 9.5 8 L 16 8"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <circle fill="none" stroke="currentColor" cx="8" cy="8" r="6"/>
+ <path fill="none" stroke="currentColor" d="M 8 0 L 8 6.5"/>
+ <path fill="none" stroke="currentColor" d="M 0 8 L 6.5 8"/>
+ <path fill="none" stroke="currentColor" d="M 8 9.5 L 8 16"/>
+ <path fill="none" stroke="currentColor" d="M 9.5 8 L 16 8"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesCubicBeziersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/CubicBezier.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/CubicBezier.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/CubicBezier.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect x="0" y="0" width="16" height="16" rx="3" ry="3" fill="hsl(212, 92%, 54%)"/>
- <path xmlns="http://www.w3.org/2000/svg" d="M 4 14 C 4.5 2.5 11.5 13.5 12 2" fill="none" stroke="white" style="stroke-width: 3;"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="hsl(212, 92%, 54%)" x="0" y="0" width="16" height="16" rx="3" ry="3"/>
+ <path fill="none" stroke="white" stroke-width="3" d="M 4 14 C 4.5 2.5 11.5 13.5 12 2"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMCharacterDatasvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMCharacterData.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMCharacterData.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMCharacterData.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(204, 116, 121)" d="M 4.773438 11.542969 C 3.855469 10.621094 3.390625 9.347656 3.390625 7.769531 C 3.390625 6.15625 3.863281 4.878906 4.789062 3.964844 C 5.710938 3.054688 7.003906 2.59375 8.625 2.59375 C 9.570312 2.59375 10.519531 2.707031 11.441406 2.929688 C 11.890625 3.035156 12.210938 3.4375 12.210938 3.902344 L 12.210938 5.195312 C 12.210938 5.519531 12.050781 5.824219 11.789062 6.011719 C 11.613281 6.132812 11.410156 6.195312 11.207031 6.195312 C 11.097656 6.195312 10.984375 6.179688 10.878906 6.140625 C 10.015625 5.835938 9.308594 5.683594 8.769531 5.683594 C 8.058594 5.683594 7.753906 5.941406 7.589844 6.132812 C 7.296875 6.476562 7.148438 7.019531 7.148438 7.746094 C 7.148438 8.445312 7.308594 8.972656 7.621094 9.320312 C 7.808594 9.523438 8.148438 9.796875 8.921875 9.796875 C 9.542969 9.796875 10.1875 9.632812 10.839844 9.308594 C 10.980469 9.242188 11.132812 9.207031 11.285156 9.207031 C 11.46875 9.207
031 11.648438 9.257812 11.8125 9.359375 C 12.105469 9.539062 12.285156 9.859375 12.285156 10.207031 L 12.285156 11.425781 C 12.285156 11.820312 12.050781 12.179688 11.691406 12.339844 C 10.792969 12.738281 9.730469 12.941406 8.527344 12.941406 C 6.957031 12.941406 5.691406 12.472656 4.773438 11.542969"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMCommentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMComment.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMComment.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMComment.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(165, 202, 164)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(118, 153, 116)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(128, 166, 126)" d="M 4.773438 11.542969 C 3.855469 10.621094 3.390625 9.347656 3.390625 7.769531 C 3.390625 6.15625 3.863281 4.878906 4.789062 3.964844 C 5.710938 3.054688 7.003906 2.59375 8.625 2.59375 C 9.570312 2.59375 10.519531 2.707031 11.441406 2.929688 C 11.890625 3.035156 12.210938 3.4375 12.210938 3.902344 L 12.210938 5.195312 C 12.210938 5.519531 12.050781 5.824219 11.789062 6.011719 C 11.613281 6.132812 11.410156 6.195312 11.207031 6.195312 C 11.097656 6.195312 10.984375 6.179688 10.878906 6.140625 C 10.015625 5.835938 9.308594 5.683594 8.769531 5.683594 C 8.058594 5.683594 7.753906 5.941406 7.589844 6.132812 C 7.296875 6.476562 7.148438 7.019531 7.148438 7.746094 C 7.148438 8.445312 7.308594 8.972656 7.621094 9.320312 C 7.808594 9.523438 8.148438 9.796875 8.921875 9.796875 C 9.542969 9.796875 10.1875 9.632812 10.839844 9.308594 C 10.980469 9.242188 11.132812 9.207031 11.285156 9.207031 C 11.46875 9.207
031 11.648438 9.257812 11.8125 9.359375 C 12.105469 9.539062 12.285156 9.859375 12.285156 10.207031 L 12.285156 11.425781 C 12.285156 11.820312 12.050781 12.179688 11.691406 12.339844 C 10.792969 12.738281 9.730469 12.941406 8.527344 12.941406 C 6.957031 12.941406 5.691406 12.472656 4.773438 11.542969"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMDocumentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocument.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocument.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocument.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 4.445312 12.742188 C 3.890625 12.742188 3.445312 12.292969 3.445312 11.742188 L 3.445312 3.792969 C 3.445312 3.242188 3.890625 2.792969 4.445312 2.792969 L 7.867188 2.792969 C 9.367188 2.792969 10.554688 3.222656 11.402344 4.0625 C 12.25 4.910156 12.679688 6.101562 12.679688 7.601562 C 12.679688 9.171875 12.234375 10.429688 11.359375 11.347656 C 10.472656 12.273438 9.246094 12.742188 7.71875 12.742188 L 4.445312 12.742188 M 7.335938 9.613281 C 8.1875 9.613281 8.449219 9.324219 8.535156 9.226562 C 8.789062 8.941406 8.921875 8.414062 8.921875 7.699219 C 8.921875 7.140625 8.8125 6.703125 8.578125 6.363281 C 8.457031 6.183594 8.328125 6.070312 8.1875 6.011719 C 8.0625 5.964844 7.761719 5.882812 7.097656 5.882812 C 7.097656 6.960938 7.097656 8.539062 7.097656 9.613281 C 7.171875 9.613281 7.335938 9.613281 7.335938 9.613281"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMDocumentTypesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocumentType.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocumentType.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMDocumentType.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 4.445312 12.742188 C 3.890625 12.742188 3.445312 12.292969 3.445312 11.742188 L 3.445312 3.792969 C 3.445312 3.242188 3.890625 2.792969 4.445312 2.792969 L 7.867188 2.792969 C 9.367188 2.792969 10.554688 3.222656 11.402344 4.0625 C 12.25 4.910156 12.679688 6.101562 12.679688 7.601562 C 12.679688 9.171875 12.234375 10.429688 11.359375 11.347656 C 10.472656 12.273438 9.246094 12.742188 7.71875 12.742188 L 4.445312 12.742188 M 7.335938 9.613281 C 8.1875 9.613281 8.449219 9.324219 8.535156 9.226562 C 8.789062 8.941406 8.921875 8.414062 8.921875 7.699219 C 8.921875 7.140625 8.8125 6.703125 8.578125 6.363281 C 8.457031 6.183594 8.328125 6.070312 8.1875 6.011719 C 8.0625 5.964844 7.761719 5.882812 7.097656 5.882812 C 7.097656 6.960938 7.097656 8.539062 7.097656 9.613281 C 7.171875 9.613281 7.335938 9.613281 7.335938 9.613281"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 5.503906 12.742188 C 4.949219 12.742188 4.503906 12.292969 4.503906 11.742188 L 4.503906 3.792969 C 4.503906 3.242188 4.949219 2.792969 5.503906 2.792969 L 10.472656 2.792969 C 11.023438 2.792969 11.472656 3.242188 11.472656 3.792969 L 11.472656 4.882812 C 11.472656 5.4375 11.023438 5.882812 10.472656 5.882812 C 10.472656 5.882812 9.132812 5.882812 8.15625 5.882812 C 8.15625 5.992188 8.15625 5.996094 8.15625 6.101562 C 8.957031 6.101562 9.875 6.101562 9.875 6.101562 C 10.425781 6.101562 10.875 6.550781 10.875 7.101562 L 10.875 8.164062 C 10.875 8.71875 10.425781 9.164062 9.875 9.164062 C 9.875 9.164062 8.957031 9.164062 8.15625 9.164062 C 8.15625 9.382812 8.15625 9.398438 8.15625 9.613281 C 9.191406 9.613281 10.722656 9.613281 10.722656 9.613281 C 11.277344 9.613281 11.722656 10.0625 11.722656 10.613281 L 11.722656 11.742188 C 11.722656 12.292969 11.277344 12.742188 10.722656 12.742188 L 5.503
906 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMNodesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMNode.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMNode.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMNode.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 9.5625 12.742188 C 9.230469 12.742188 8.917969 12.574219 8.734375 12.300781 C 8.734375 12.300781 7.816406 10.941406 6.90625 9.585938 C 6.90625 10.617188 6.90625 11.742188 6.90625 11.742188 C 6.90625 12.292969 6.457031 12.742188 5.90625 12.742188 L 4.578125 12.742188 C 4.027344 12.742188 3.578125 12.292969 3.578125 11.742188 L 3.578125 3.792969 C 3.578125 3.242188 4.027344 2.792969 4.578125 2.792969 L 6.035156 2.792969 C 6.367188 2.792969 6.675781 2.957031 6.863281 3.230469 C 6.863281 3.230469 7.789062 4.601562 8.71875 5.96875 C 8.71875 4.925781 8.71875 3.792969 8.71875 3.792969 C 8.71875 3.242188 9.164062 2.792969 9.71875 2.792969 L 11.046875 2.792969 C 11.597656 2.792969 12.046875 3.242188 12.046875 3.792969 L 12.046875 11.742188 C 12.046875 12.292969 11.597656 12.742188 11.046875 12.742188 L 9.5625 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDOMTextNodesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DOMTextNode.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DOMTextNode.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DOMTextNode.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(204, 116, 121)" d="M 6.980469 12.742188 C 6.429688 12.742188 5.980469 12.292969 5.980469 11.742188 C 5.980469 11.742188 5.980469 7.34375 5.980469 5.882812 C 5.140625 5.882812 4.136719 5.882812 4.136719 5.882812 C 3.582031 5.882812 3.136719 5.4375 3.136719 4.882812 L 3.136719 3.792969 C 3.136719 3.242188 3.582031 2.792969 4.136719 2.792969 L 11.488281 2.792969 C 12.042969 2.792969 12.488281 3.242188 12.488281 3.792969 L 12.488281 4.882812 C 12.488281 5.4375 12.042969 5.882812 11.488281 5.882812 C 11.488281 5.882812 10.484375 5.882812 9.640625 5.882812 C 9.640625 7.34375 9.640625 11.742188 9.640625 11.742188 C 9.640625 12.292969 9.195312 12.742188 8.640625 12.742188 L 6.980469 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDebugsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Debug.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Debug.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Debug.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 0 1.997 C 0 1.446 0.446 1 0.996 1 L 5.693 1 C 5.973 1 6.352 1.152 6.555 1.355 L 9.845 4.645 C 10.041 4.841 10.048 5.152 9.845 5.355 L 6.555 8.645 C 6.359 8.841 5.979 9 5.693 9 L 0.996 9 C 0.446 9 0 8.547 0 8.003 L 0 1.997 Z" class="filled" fill="rgb(123, 178, 238)"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="rgb(123, 178, 238)" d="M 0 1.997 C 0 1.446 0.446 1 0.996 1 L 5.693 1 C 5.973 1 6.352 1.152 6.555 1.355 L 9.845 4.645 C 10.041 4.841 10.048 5.152 9.845 5.355 L 6.555 8.645 C 6.359 8.841 5.979 9 5.693 9 L 0.996 9 C 0.446 9 0 8.547 0 8.003 L 0 1.997 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDebuggersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Debugger.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Debugger.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Debugger.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,13 +1,13 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 8.04545455 15 C 10.8068784 15 13.0454545 11.8659934 13.0454545 8 C 13.0454545 4.13400656 10.8068784 1 8.04545455 1 C 5.28403066 1 3.04545455 4.13400656 3.04545455 8 C 3.04545455 11.8659934 5.28403066 15 8.04545455 15 Z" class="stroked" fill="none" stroke="black"/>
- <path d="M 3.5 4.5 L 12.5 4.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 8 4.5 L 8 15" class="stroked" fill="none" stroke="black"/>
- <path d="M 11.5 12.5 L 13.5 14.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 13 8 L 15 8" class="stroked" fill="none" stroke="black"/>
- <path d="M 3 8 L 1 8" class="stroked" fill="none" stroke="black"/>
- <path d="M 4.5 12.5 L 2.5 14.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 4.5 3.5 L 2.5 1.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 11.5 3.5 L 13.5 1.5" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 8.04545455 15 C 10.8068784 15 13.0454545 11.8659934 13.0454545 8 C 13.0454545 4.13400656 10.8068784 1 8.04545455 1 C 5.28403066 1 3.04545455 4.13400656 3.04545455 8 C 3.04545455 11.8659934 5.28403066 15 8.04545455 15 Z"/>
+ <path fill="none" stroke="currentColor" d="M 3.5 4.5 L 12.5 4.5"/>
+ <path fill="none" stroke="currentColor" d="M 8 4.5 L 8 15"/>
+ <path fill="none" stroke="currentColor" d="M 11.5 12.5 L 13.5 14.5"/>
+ <path fill="none" stroke="currentColor" d="M 13 8 L 15 8"/>
+ <path fill="none" stroke="currentColor" d="M 3 8 L 1 8"/>
+ <path fill="none" stroke="currentColor" d="M 4.5 12.5 L 2.5 14.5"/>
+ <path fill="none" stroke="currentColor" d="M 4.5 3.5 L 2.5 1.5"/>
+ <path fill="none" stroke="currentColor" d="M 11.5 3.5 L 13.5 1.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDisclosureTrianglessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DisclosureTriangles.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DisclosureTriangles.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DisclosureTriangles.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 13 13">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 13 13">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDockBottomsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DockBottom.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DockBottom.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DockBottom.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect class="stroked" fill="none" stroke="black" x="0.5" y="1.5" width="15" height="13"/>
- <path class="stroked" fill="none" stroke="black" d="M 1 9.5 L 15 9.5 L 1 9.5 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="1.5" width="15" height="13"/>
+ <path fill="none" stroke="currentColor" d="M 1 9.5 L 15 9.5 L 1 9.5 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDockRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DockRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DockRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DockRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect class="stroked" fill="none" stroke="black" x="0.5" y="1.5" width="15" height="13"/>
- <path class="stroked" fill="none" stroke="black" d="M 9.5 2 L 9.5 14 L 9.5 2 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="1.5" width="15" height="13"/>
+ <path fill="none" stroke="currentColor" d="M 9.5 2 L 9.5 14 L 9.5 2 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesDownloadArrowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/DownloadArrow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/DownloadArrow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/DownloadArrow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path class="stroked" fill="none" stroke="black" d="M 8.5 15 C 12.3659934 15 15.5 11.8659934 15.5 8 C 15.5 4.13400656 12.3659934 1 8.5 1 C 4.63400656 1 1.5 4.13400656 1.5 8 C 1.5 11.8659934 4.63400656 15 8.5 15 Z"/>
- <path class="stroked" fill="none" stroke="black" d="M 8.5 1.5 L 8.5 11"/>
- <path class="stroked" fill="none" stroke="black" d="M 5 8 L 8.5 11.5 L 12 8"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 8.5 15 C 12.3659934 15 15.5 11.8659934 15.5 8 C 15.5 4.13400656 12.3659934 1 8.5 1 C 4.63400656 1 1.5 4.13400656 1.5 8 C 1.5 11.8659934 4.63400656 15 8.5 15 Z"/>
+ <path fill="none" stroke="currentColor" d="M 8.5 1.5 L 8.5 11"/>
+ <path fill="none" stroke="currentColor" d="M 5 8 L 8.5 11.5 L 12 8"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesElementssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Elements.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Elements.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Elements.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect x="1.5" y="1.5" width="13" height="5" class="stroked" fill="none" stroke="black"/>
- <path d="M 11.5 6.5 L 11.5 10.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 4.5 6.5 L 4.5 10.5" class="stroked" fill="none" stroke="black"/>
- <rect x="9.5" y="10.5" width="5" height="4" class="stroked" fill="none" stroke="black"/>
- <rect x="1.5" y="10.5" width="5" height="4" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="1.5" y="1.5" width="13" height="5"/>
+ <path fill="none" stroke="currentColor" d="M 11.5 6.5 L 11.5 10.5"/>
+ <path fill="none" stroke="currentColor" d="M 4.5 6.5 L 4.5 10.5"/>
+ <rect fill="none" stroke="currentColor" x="9.5" y="10.5" width="5" height="4"/>
+ <rect fill="none" stroke="currentColor" x="1.5" y="10.5" width="5" height="4"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesErrorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Error.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Error.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Error.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <path fill="white" d="M 4 0.558594 L 6.195312 0.558594 L 6.195312 9.304688 L 4 9.304688 Z"/>
</span><span class="cx"> <path fill="rgb(231, 38, 34)" d="M 9.996094 7.085938 L 7.058594 10.007812 L 2.917969 9.996094 L -0.00390625 7.0625 L 0.0078125 2.921875 L 2.945312 0 L 7.082031 0.0117188 L 10.007812 2.945312 Z M 6 2 C 6 1.449219 5.550781 1 5 1 C 4.445312 1 4 1.449219 4 2 L 4 5 C 4 5.550781 4.445312 6 5 6 C 5.550781 6 6 5.550781 6 5 Z M 5 7 C 4.445312 7 4 7.449219 4 8 C 4 8.550781 4.445312 9 5 9 C 5.550781 9 6 8.550781 6 8 C 6 7.449219 5.550781 7 5 7 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesErrorssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Errors.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Errors.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Errors.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path fill="none" stroke="black" d="M 11 2.5 L 14.5 6 L 14.5 11 L 11 14.5 L 6 14.5 L 2.5 11 L 2.5 6 L 6 2.5 L 11 2.5 Z "/>
- <path fill="none" stroke="black" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
- <rect fill="black" x="8" y="11" width="1" height="1"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 11 2.5 L 14.5 6 L 14.5 11 L 11 14.5 L 6 14.5 L 2.5 11 L 2.5 6 L 6 2.5 L 11 2.5 Z "/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
+ <rect x="8" y="11" width="1" height="1"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesErrorsEnabledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ErrorsEnabled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ErrorsEnabled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ErrorsEnabled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(201, 55, 57)" stroke="rgb(201, 55, 57)" d="M 11 2.5 L 14.5 6 L 14.5 11 L 11 14.5 L 6 14.5 L 2.5 11 L 2.5 6 L 6 2.5 L 11 2.5 Z "/>
</span><span class="cx"> <path fill="none" stroke="white" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
</span><span class="cx"> <rect fill="white" x="8" y="11" width="1" height="1"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesEventListenersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/EventListener.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/EventListener.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/EventListener.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(228, 198, 172)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(186, 157, 132)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(196, 166, 140)" d="M 5.503906 12.742188 C 4.949219 12.742188 4.503906 12.292969 4.503906 11.742188 L 4.503906 3.792969 C 4.503906 3.242188 4.949219 2.792969 5.503906 2.792969 L 10.472656 2.792969 C 11.023438 2.792969 11.472656 3.242188 11.472656 3.792969 L 11.472656 4.882812 C 11.472656 5.4375 11.023438 5.882812 10.472656 5.882812 C 10.472656 5.882812 9.132812 5.882812 8.15625 5.882812 C 8.15625 5.992188 8.15625 5.996094 8.15625 6.101562 C 8.957031 6.101562 9.875 6.101562 9.875 6.101562 C 10.425781 6.101562 10.875 6.550781 10.875 7.101562 L 10.875 8.164062 C 10.875 8.71875 10.425781 9.164062 9.875 9.164062 C 9.875 9.164062 8.957031 9.164062 8.15625 9.164062 C 8.15625 9.382812 8.15625 9.398438 8.15625 9.613281 C 9.191406 9.613281 10.722656 9.613281 10.722656 9.613281 C 11.277344 9.613281 11.722656 10.0625 11.722656 10.613281 L 11.722656 11.742188 C 11.722656 12.292969 11.277344 12.742188 10.722656 12.742188 L 5.503
906 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesExceptionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Exception.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Exception.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Exception.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(148, 183, 219)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(106, 136, 170)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 11.460938 9.433594 L 13.074219 7.09375 L 11.421875 7.09375 L 10.988281 7.898438 C 10.859375 8.136719 10.738281 8.378906 10.609375 8.648438 L 10.589844 8.648438 C 10.457031 8.410156 10.328125 8.167969 10.1875 7.917969 L 9.703125 7.09375 L 8 7.09375 L 9.625 9.5 L 8 11.941406 L 8 10.5 L 5.625 10.5 L 5.625 8.582031 L 7.25 8.582031 L 7.25 7.09375 L 5.625 7.09375 L 5.625 5.414062 L 8 5.414062 L 8 4 L 4 4 L 4 12 L 9.636719 12 L 10.097656 11.117188 C 10.21875 10.875 10.347656 10.636719 10.46875 10.375 L 10.496094 10.375 C 10.617188 10.625 10.738281 10.875 10.878906 11.117188 L 11.371094 12 L 13.097656 12 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesEyesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Eye.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Eye.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Eye.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 11" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 7.942 8.124 C 6.53 8.124 5.385 6.95 5.385 5.499 C 5.385 4.05 6.53 2.875 7.942 2.875 C 9.355 2.875 10.5 4.05 10.5 5.499 C 10.5 6.95 9.355 8.124 7.942 8.124 M 7.942 1.0 C 3.923 1.0 1.001 5.499 1.001 5.499 C 1.001 5.499 3.923 9.999 7.942 9.999 C 11.962 9.999 14.884 5.499 14.884 5.499 C 14.884 5.499 11.962 1.0 7.942 1.0" fill="none" stroke="black"/>
- <path d="M 7.942 4.375 C 7.337 4.375 6.846 4.878 6.846 5.5 C 6.846 6.121 7.337 6.625 7.942 6.625 C 8.548 6.625 9.038 6.121 9.038 5.5 C 9.038 4.878 8.548 4.375 7.942 4.375"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 11">
+ <path fill="none" stroke="currentColor" d="M 7.942 8.124 C 6.53 8.124 5.385 6.95 5.385 5.499 C 5.385 4.05 6.53 2.875 7.942 2.875 C 9.355 2.875 10.5 4.05 10.5 5.499 C 10.5 6.95 9.355 8.124 7.942 8.124 M 7.942 1.0 C 3.923 1.0 1.001 5.499 1.001 5.499 C 1.001 5.499 3.923 9.999 7.942 9.999 C 11.962 9.999 14.884 5.499 14.884 5.499 C 14.884 5.499 11.962 1.0 7.942 1.0"/>
+ <path fill="currentColor" d="M 7.942 4.375 C 7.337 4.375 6.846 4.878 6.846 5.5 C 6.846 6.121 7.337 6.625 7.942 6.625 C 8.548 6.625 9.038 6.121 9.038 5.5 C 9.038 4.878 8.548 4.375 7.942 4.375"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFilterFieldGlyphsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FilterFieldGlyph.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FilterFieldGlyph.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FilterFieldGlyph.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
</ins><span class="cx"> <path fill="rgb(146, 146, 146)" fill-rule="evenodd" d="M 9.964556 7 C 9.987914 6.836699 10 6.669761 10 6.5 C 10 4.567003 8.432997 3 6.5 3 C 4.567003 3 3 4.567003 3 6.5 C 3 6.669761 3.012086 6.836699 3.035444 7 L 9.964556 7 L 9.964556 7 Z M 6.5 13 C 10.08985 13 13 10.089851 13 6.5 C 13 2.91015 10.08985 0 6.5 0 C 2.910149 0 0 2.91015 0 6.5 C 0 10.089851 2.910149 13 6.5 13 L 6.5 13 Z M 6.5 12 C 9.537566 12 12 9.537566 12 6.5 C 12 3.462434 9.537566 1 6.5 1 C 3.462434 1 1 3.462434 1 6.5 C 1 9.537566 3.462434 12 6.5 12 L 6.5 12 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFloatLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FloatLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FloatLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FloatLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <rect class="stroked" x="0.5" y="2.5" width="5" height="5" fill="none" />
- <line class="stroked" x1="7.5" y1="2.5" x2="16" y2="2.5" />
- <line class="stroked" x1="7.5" y1="5" x2="16" y2="5" />
- <line class="stroked" x1="7.5" y1="7.5" x2="16" y2="7.5" />
- <line class="stroked" x1="0" y1="10" x2="16" y2="10" />
- <line class="stroked" x1="0" y1="12.5" x2="16" y2="12.5" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="2.5" width="5" height="5"/>
+ <line stroke="currentColor" x1="7.5" y1="2.5" x2="16" y2="2.5"/>
+ <line stroke="currentColor" x1="7.5" y1="5" x2="16" y2="5"/>
+ <line stroke="currentColor" x1="7.5" y1="7.5" x2="16" y2="7.5"/>
+ <line stroke="currentColor" x1="0" y1="10" x2="16" y2="10"/>
+ <line stroke="currentColor" x1="0" y1="12.5" x2="16" y2="12.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFloatRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FloatRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FloatRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FloatRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <rect class="stroked" x="10.5" y="2.5" width="5" height="5" fill="none" />
- <line class="stroked" x1="0" y1="2.5" x2="8.5" y2="2.5" />
- <line class="stroked" x1="0" y1="5" x2="8.5" y2="5" />
- <line class="stroked" x1="0" y1="7.5" x2="8.5" y2="7.5" />
- <line class="stroked" x1="0" y1="10" x2="16" y2="10" />
- <line class="stroked" x1="0" y1="12.5" x2="16" y2="12.5" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="10.5" y="2.5" width="5" height="5"/>
+ <line stroke="currentColor" x1="0" y1="2.5" x2="8.5" y2="2.5"/>
+ <line stroke="currentColor" x1="0" y1="5" x2="8.5" y2="5"/>
+ <line stroke="currentColor" x1="0" y1="7.5" x2="8.5" y2="7.5"/>
+ <line stroke="currentColor" x1="0" y1="10" x2="16" y2="10"/>
+ <line stroke="currentColor" x1="0" y1="12.5" x2="16" y2="12.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFontStyleItalicsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleItalic.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleItalic.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleItalic.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif" font-style="italic">
- <text class="filled" x="-1" y="11">Abc</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 4.55712891 8.35449219 L 4.18359375 5.50244141 L 2.53564453 8.35449219 L 4.55712891 8.35449219 Z M 3.93310547 4.54443359 L 4.921875 4.54443359 L 5.89306641 11 L 4.93505859 11 L 4.68896484 9.06640625 L 2.13574219 9.06640625 L 1.02832031 11 L 0.131835938 11 L 3.93310547 4.54443359 Z M 7.89697266 4.52246094 L 8.66601562 4.52246094 L 8.16943359 6.86474609 C 8.38916125 6.63915903 8.63159047 6.46704161 8.89672852 6.34838867 C 9.16186656 6.22973573 9.43505719 6.17041016 9.71630859 6.17041016 C 10.302249 6.17041016 10.735106 6.37182416 11.0148926 6.7746582 C 11.2946791 7.17749225 11.3510751 7.77148045 11.184082 8.55664062 C 11.0258781 9.30078497 10.7138695 9.91894285 10.2480469 10.4111328 C 9.78222423 10.9033228 9.22998366 11.1494141 8.59130859 11.1494141 C 8.23388493 11.1494141 7.95117292 11.0629891 7.74316406 10.8901367 C 7.61718687 10.7875971 7.49560605 10.6235363 7.37841797 10.3979492 L 7.25097656 11 L 6.52148437 11 L 7.8969726
6 4.52246094 Z M 10.3666992 8.59619141 C 10.4721685 8.10107174 10.4531257 7.69091959 10.3095703 7.36572266 C 10.1660149 7.04052572 9.88769738 6.87792969 9.47460938 6.87792969 C 9.11425601 6.87792969 8.77002117 7.01122914 8.44189453 7.27783203 C 8.11376789 7.54443493 7.88525455 7.98388366 7.75634766 8.59619141 C 7.66259719 9.03857643 7.64208958 9.39745956 7.69482422 9.67285156 C 7.79150439 10.1914088 8.1240206 10.4506836 8.69238281 10.4506836 C 9.12011933 10.4506836 9.4760728 10.2807634 9.76025391 9.94091797 C 10.044435 9.60107252 10.2465814 9.15283481 10.3666992 8.59619141 L 10.3666992 8.59619141 Z M 15.9609375 7.87548828 L 15.1918945 7.87548828 C 15.206543 7.58544777 15.1508795 7.34448338 15.0249023 7.15258789 C 14.8989252 6.9606924 14.651369 6.86474609 14.2822266 6.86474609 C 13.7783178 6.86474609 13.365236 7.11083738 13.0429688 7.60302734 C 12.8349599 7.92236488 12.6811528 8.31640391 12.581543 8.78515625 C 12.4790034 9.2568383 12.4936517 9.65380698 12.6254883 9.97607422 C
12.7573249 10.2983415 13.0371072 10.4594727 13.4648438 10.4594727 C 13.7929704 10.4594727 14.0742176 10.3591319 14.3085938 10.1584473 C 14.5429699 9.95776267 14.7333977 9.68310721 14.8798828 9.33447266 L 15.6489258 9.33447266 C 15.4291981 9.95849921 15.112795 10.4147935 14.699707 10.7033691 C 14.286619 10.9919448 13.8061551 11.1362305 13.2583008 11.1362305 C 12.6430633 11.1362305 12.1999525 10.9113792 11.9289551 10.4616699 C 11.6579576 10.0119606 11.5942376 9.45019868 11.737793 8.77636719 C 11.9135751 7.95019118 12.2512182 7.30713121 12.7507324 6.84716797 C 13.2502466 6.38720473 13.8105438 6.15722656 14.4316406 6.15722656 C 14.9619167 6.15722656 15.3654771 6.28613152 15.642334 6.54394531 C 15.9191908 6.8017591 16.0253909 7.24560232 15.9609375 7.87548828 L 15.9609375 7.87548828 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFontStyleNormalsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleNormal.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleNormal.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FontStyleNormal.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="-1" y="11">Abc</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.99902344 8.35449219 L3.01904297 5.50244141 L1.97753906 8.35449219 L3.99902344 8.35449219 Z M 2.56201172 4.54443359 L3.55078125 4.54443359 L5.89306641 11 L4.93505859 11 L4.28027344 9.06640625 L1.72705078 9.06640625 L1.02832031 11 L0.131835938 11 L2.56201172 4.54443359 Z M 6.85148439 4.52246094 L7.62052736 4.52246094 L7.62052736 6.86474609 C 7.79337978 6.63915903 7.99992069 6.46704161 8.24015626 6.34838867 C 8.48039184 6.22973573 8.74113142 6.17041016 9.02238283 6.17041016 C 9.60832326 6.17041016 10.0836603 6.37182416 10.4484082 6.7746582 C 10.8131561 7.17749225 10.9955274 7.77148045 10.9955274 8.55664062 C 10.9955274 9.30078497 10.8153534 9.91894285 10.455 10.4111328 C 10.0946466 10.9033228 9.59513993 11.1494141 8.95646486 11.1494141 C 8.59904119 11.1494141 8.2972864 11.0629891 8.05119142 10.8901367 C 7.90470631 10.7875971 7.7479696 10.6235363 7.58097658 10.3979492 L7.58097658 11 L6.85148439 11 L6.85148439 4.52246094 Z M
9.86833009 9.94091797 C 10.0807335 9.60107252 10.1869336 9.15283481 10.1869336 8.59619141 C 10.1869336 8.10107174 10.0807335 7.69091959 9.86833009 7.36572266 C 9.65592669 7.04052572 9.34318567 6.87792969 8.93009767 6.87792969 C 8.56974431 6.87792969 8.25407363 7.01122914 7.98307618 7.27783203 C 7.71207874 7.54443493 7.57658204 7.98388366 7.57658204 8.59619141 C 7.57658204 9.03857643 7.63224555 9.39745956 7.74357423 9.67285156 C 7.95158308 10.1914088 8.3397628 10.4506836 8.90812501 10.4506836 C 9.33586153 10.4506836 9.65592669 10.2807634 9.86833009 9.94091797 L9.86833009 9.94091797 Z M 15.3575098 6.54394531 C 15.690031 6.8017591 15.8899802 7.24560232 15.9573633 7.87548828 L15.1883203 7.87548828 C 15.1414451 7.58544777 15.0345126 7.34448338 14.8675196 7.15258789 C 14.7005265 6.9606924 14.4324628 6.86474609 14.0633203 6.86474609 C 13.5594116 6.86474609 13.1990636 7.11083738 12.9822657 7.60302734 C 12.8416399 7.92236488 12.7713282 8.31640391 12.7713282 8.78515625 C 12.7713282 9.
2568383 12.8709365 9.65380698 13.0701563 9.97607422 C 13.269376 10.2983415 13.5828495 10.4594727 14.010586 10.4594727 C 14.3387126 10.4594727 14.5987198 10.3591319 14.7906153 10.1584473 C 14.9825108 9.95776267 15.1150778 9.68310721 15.1883203 9.33447266 L15.9573633 9.33447266 C 15.8694722 9.95849921 15.6497479 10.4147935 15.2981836 10.7033691 C 14.9466194 10.9919448 14.4969168 11.1362305 13.9490625 11.1362305 C 13.3338251 11.1362305 12.8431073 10.9113792 12.4768946 10.4616699 C 12.1106818 10.0119606 11.9275782 9.45019868 11.9275782 8.77636719 C 11.9275782 7.95019118 12.1282597 7.30713121 12.5296289 6.84716797 C 12.9309981 6.38720473 13.4422235 6.15722656 14.0633203 6.15722656 C 14.5935964 6.15722656 15.0249886 6.28613152 15.3575098 6.54394531 L15.3575098 6.54394531 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFontVariantSmallCapssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/FontVariantSmallCaps.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/FontVariantSmallCaps.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/FontVariantSmallCaps.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="7" font-family="-apple-system, sans-serif">
- <rect class="filled" x="-2" width="20" height="20" fill="white" stroke="none" />
- <text class="filled" x="0.25" y="11" font-size="10">A</text>
- <text class="filled" x="6.75" y="11">B</text>
- <text class="filled" x="11" y="11">C</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 4.44335938 8.06054688 L 3.35449219 4.89160156 L 2.19726562 8.06054688 L 4.44335938 8.06054688 Z M 2.84667969 3.82714844 L 3.9453125 3.82714844 L 6.54785156 11 L 5.48339844 11 L 4.75585938 8.8515625 L 1.91894531 8.8515625 L 1.14257812 11 L 0.146484375 11 L 2.84667969 3.82714844 Z M 7.01611328 5.97900391 L 9.17285156 5.97900391 C 9.76074513 5.97900391 10.1788725 6.15445788 10.4272461 6.50537109 C 10.5730802 6.7127289 10.6459961 6.95198432 10.6459961 7.22314453 C 10.6459961 7.53987789 10.5559905 7.79964091 10.3759766 8.00244141 C 10.2825516 8.1095383 10.1481129 8.20751909 9.97265625 8.29638672 C 10.2301445 8.39436898 10.4226882 8.5048822 10.550293 8.62792969 C 10.77588 8.84668078 10.8886719 9.14859833 10.8886719 9.53369141 C 10.8886719 9.85726073 10.7872731 10.1500638 10.5844727 10.4121094 C 10.2814112 10.8040384 9.79948247 11 9.13867188 11 L 7.01611328 11 L 7.01611328 5.97900391 Z M 8.91992188 8.1015625 C 9.20703269 8.101562
5 9.43033774 8.0616866 9.58984375 7.98193359 C 9.84049604 7.85660745 9.96582031 7.63102376 9.96582031 7.30517578 C 9.96582031 6.97704914 9.83252086 6.75602271 9.56591797 6.64208984 C 9.41552659 6.57828744 9.19222153 6.54638672 8.89599609 6.54638672 L 7.68261719 6.54638672 L 7.68261719 8.1015625 L 8.91992188 8.1015625 Z M 9.14892578 10.4189453 C 9.56592005 10.4189453 9.86328036 10.2981783 10.0410156 10.0566406 C 10.1526698 9.90397059 10.2084961 9.71940212 10.2084961 9.50292969 C 10.2084961 9.13834453 10.0455745 8.88997462 9.71972656 8.7578125 C 9.54654861 8.68717413 9.317547 8.65185547 9.03271484 8.65185547 L 7.68261719 8.65185547 L 7.68261719 10.4189453 L 9.14892578 10.4189453 Z M 15.1289062 6.34472656 C 15.4798195 6.67968917 15.6746417 7.06021922 15.7133789 7.48632812 L 15.050293 7.48632812 C 14.9750973 7.1627588 14.8252778 6.90641371 14.6008301 6.71728516 C 14.3763823 6.52815661 14.0613627 6.43359375 13.6557617 6.43359375 C 13.1612931 6.43359375 12.7619644 6.60733876 12.45
77637 6.95483398 C 12.1535629 7.30232921 12.0014648 7.83495735 12.0014648 8.55273438 C 12.0014648 9.14062794 12.1387519 9.61742981 12.4133301 9.9831543 C 12.6879083 10.3488788 13.0974908 10.5317383 13.6420898 10.5317383 C 14.1433944 10.5317383 14.5250638 10.3391946 14.7871094 9.95410156 C 14.9261075 9.75130107 15.0297848 9.48470217 15.0981445 9.15429688 L 15.7612305 9.15429688 C 15.7019854 9.68294535 15.5060238 10.1261375 15.1733398 10.4838867 C 14.7745748 10.9145529 14.2368198 11.1298828 13.5600586 11.1298828 C 12.9767223 11.1298828 12.4868184 10.9532895 12.090332 10.6000977 C 11.5685195 10.1329729 11.3076172 9.41178873 11.3076172 8.43652344 C 11.3076172 7.69595984 11.5035788 7.0887068 11.8955078 6.61474609 C 12.3193381 6.09976956 12.9038049 5.84228516 13.6489258 5.84228516 C 14.2846711 5.84228516 14.777993 6.00976395 15.1289062 6.34472656 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesFunctionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Function.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Function.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Function.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(165, 202, 164)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(118, 153, 116)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(128, 166, 126)" d="M 10.503906 2.558594 C 8.164062 2.558594 6.574219 3.742188 5.882812 5.988281 L 4.445312 6 L 3.449219 6.007812 L 3.449219 9 L 5.15625 9 L 4.21875 12.925781 L 3.921875 14.15625 L 7.964844 14.15625 L 8.148438 13.386719 L 9.191406 9 L 11.300781 9 L 11.300781 6 L 9.902344 6 C 10.070312 5.589844 10.296875 5.589844 10.480469 5.589844 C 10.800781 5.589844 11.191406 5.652344 11.644531 5.769531 L 12.796875 6.074219 L 12.898438 4.890625 L 12.996094 3.757812 L 13.078125 2.828125 L 12.15625 2.683594 C 11.636719 2.597656 11.082031 2.558594 10.503906 2.558594 M 10.503906 3.558594 C 11.03125 3.558594 11.53125 3.59375 12 3.667969 L 11.902344 4.804688 C 11.363281 4.660156 10.890625 4.589844 10.480469 4.589844 C 9.605469 4.589844 9.050781 5.101562 8.820312 6.128906 L 8.625 7 L 10.300781 7 L 10.300781 8 L 8.398438 8 L 7.175781 13.15625 L 5.191406 13.15625 L 6.425781 8 L 4.449219 8 L 4.449219 7 L 6.613281 6.984375 L
6.742188 6.617188 C 7.257812 4.578125 8.507812 3.558594 10.503906 3.558594"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesGearsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Gear.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Gear.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Gear.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 15 15" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 7.5009 14 C 8.3259 14 9.0009 13.325 9.0019 12.5 L 9.0009 11.725 C 9.1479 11.673 9.2909 11.616 9.4299 11.551 L 10.1759 12.298 C 10.7599 12.881 11.7149 12.88 12.2969 12.297 C 12.5899 12.005 12.7349 11.619 12.7349 11.235 C 12.7349 10.852 12.5899 10.467 12.2979 10.175 L 11.5519 9.429 C 11.6179 9.289 11.6739 9.146 11.7259 9 L 12.5009 8.999 C 13.3259 9 14.0009 8.325 14.0009 7.5 C 14.0009 6.674 13.3259 6 12.5009 5.999 L 11.7259 6 C 11.6739 5.853 11.6179 5.71 11.5519 5.571 L 12.2979 4.825 C 12.5889 4.533 12.7349 4.148 12.7349 3.764 C 12.7349 3.379 12.5899 2.995 12.2989 2.704 C 11.7149 2.119 10.7599 2.119 10.1769 2.702 L 9.4299 3.449 C 9.2899 3.382 9.1479 3.327 9.0009 3.275 L 9.0009 2.499 C 9.0009 1.674 8.3259 0.999 7.5009 0.999 C 6.6759 0.999 6.0009 1.674 6.0009 2.499 L 6.0009 3.275 C 5.8549 3.327 5.7109 3.383 5.5709 3.449 L 4.8249 2.703 C 4.2419 2.12 3.2869 2.12 2.7039 2.703 C 2.4119 2.995 2.2659 3.379 2.2659 3.763 C 2.2659 4.148 2.4119 4.532 2.7029 4.824 L 3
.4499 5.571 C 3.3839 5.71 3.3289 5.853 3.2759 6 L 2.5009 5.999 C 1.6759 6 1.0009 6.674 1.0009 7.5 C 1.0009 8.325 1.6759 9 2.5009 9 L 3.2759 9 C 3.3279 9.146 3.3839 9.289 3.4499 9.429 L 2.7039 10.175 C 2.4119 10.467 2.2649 10.852 2.2659 11.236 C 2.2649 11.621 2.4129 12.006 2.7029 12.296 C 3.2869 12.88 4.2419 12.88 4.8249 12.297 L 5.5719 11.551 C 5.7109 11.616 5.8539 11.673 6.0009 11.725 L 5.9999 12.5 C 6.0009 13.325 6.6759 14 7.5009 14 Z" class="stroked" fill="none" stroke="black"/>
- <path d="M 7.5 5.6 C 8.548 5.6 9.4 6.452 9.4 7.5 C 9.4 8.548 8.548 9.4 7.5 9.4 C 6.452 9.4 5.6 8.548 5.6 7.5 C 5.6 6.452 6.452 5.6 7.5 5.6" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 7.5009 14 C 8.3259 14 9.0009 13.325 9.0019 12.5 L 9.0009 11.725 C 9.1479 11.673 9.2909 11.616 9.4299 11.551 L 10.1759 12.298 C 10.7599 12.881 11.7149 12.88 12.2969 12.297 C 12.5899 12.005 12.7349 11.619 12.7349 11.235 C 12.7349 10.852 12.5899 10.467 12.2979 10.175 L 11.5519 9.429 C 11.6179 9.289 11.6739 9.146 11.7259 9 L 12.5009 8.999 C 13.3259 9 14.0009 8.325 14.0009 7.5 C 14.0009 6.674 13.3259 6 12.5009 5.999 L 11.7259 6 C 11.6739 5.853 11.6179 5.71 11.5519 5.571 L 12.2979 4.825 C 12.5889 4.533 12.7349 4.148 12.7349 3.764 C 12.7349 3.379 12.5899 2.995 12.2989 2.704 C 11.7149 2.119 10.7599 2.119 10.1769 2.702 L 9.4299 3.449 C 9.2899 3.382 9.1479 3.327 9.0009 3.275 L 9.0009 2.499 C 9.0009 1.674 8.3259 0.999 7.5009 0.999 C 6.6759 0.999 6.0009 1.674 6.0009 2.499 L 6.0009 3.275 C 5.8549 3.327 5.7109 3.383 5.5709 3.449 L 4.8249 2.703 C 4.2419 2.12 3.2869 2.12 2.7039 2.703 C 2.4119 2.995 2.2659 3.379 2.2
659 3.763 C 2.2659 4.148 2.4119 4.532 2.7029 4.824 L 3.4499 5.571 C 3.3839 5.71 3.3289 5.853 3.2759 6 L 2.5009 5.999 C 1.6759 6 1.0009 6.674 1.0009 7.5 C 1.0009 8.325 1.6759 9 2.5009 9 L 3.2759 9 C 3.3279 9.146 3.3839 9.289 3.4499 9.429 L 2.7039 10.175 C 2.4119 10.467 2.2649 10.852 2.2659 11.236 C 2.2649 11.621 2.4129 12.006 2.7029 12.296 C 3.2869 12.88 4.2419 12.88 4.8249 12.297 L 5.5719 11.551 C 5.7109 11.616 5.8539 11.673 6.0009 11.725 L 5.9999 12.5 C 6.0009 13.325 6.6759 14 7.5009 14 Z"/>
+ <path fill="none" stroke="currentColor" d="M 7.5 5.6 C 8.548 5.6 9.4 6.452 9.4 7.5 C 9.4 8.548 8.548 9.4 7.5 9.4 C 6.452 9.4 5.6 8.548 5.6 7.5 C 5.6 6.452 6.452 5.6 7.5 5.6"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesGoToArrowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/GoToArrow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/GoToArrow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/GoToArrow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesHierarchicalNavigationItemChevronsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/HierarchicalNavigationItemChevron.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/HierarchicalNavigationItemChevron.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/HierarchicalNavigationItemChevron.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 7 16">
</ins><span class="cx"> <path fill="white" d="M 0 0 L 7 8 L 0 16 L 6 8 Z"/>
</span><span class="cx"> <path fill="rgb(108, 108, 108)" d="M 0 0 L 6 8 L 0 16 L 5 8 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner1svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner1.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner1.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner1.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 17.445312 1.4375 L 17.445312 7.28125 C 17.445312 8.078125 16.792969 8.726562 15.996094 8.726562 C 15.199219 8.726562 14.5625 8.078125 14.5625 7.28125 L 14.554688 1.441406 C 14.554688 0.644531 15.199219 0 15.996094 0 C 16.792969 0 17.445312 0.636719 17.445312 1.4375"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 9.96875 2.664062 L 12.890625 7.726562 C 13.285156 8.417969 13.046875 9.300781 12.355469 9.699219 C 11.667969 10.101562 10.789062 9.859375 10.390625 9.167969 L 7.46875 4.117188 C 7.070312 3.425781 7.304688 2.542969 7.992188 2.144531 C 8.6875 1.746094 9.566406 1.972656 9.96875 2.664062"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 4.109375 7.464844 L 9.171875 10.390625 C 9.859375 10.789062 10.101562 11.675781 9.695312 12.363281 C 9.296875 13.054688 8.421875 13.285156 7.730469 12.886719 L 2.667969 9.972656 C 1.980469 9.574219 1.738281 8.691406 2.136719 8.003906 C 2.542969 7.3125 3.417969 7.066406 4.109375 7.464844"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner10svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner10.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner10.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner10.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 1.433594 14.554688 L 7.277344 14.554688 C 8.078125 14.554688 8.726562 15.203125 8.726562 16 C 8.726562 16.796875 8.078125 17.4375 7.28125 17.4375 L 1.441406 17.441406 C 0.644531 17.441406 0 16.796875 0 16 C 0 15.203125 0.636719 14.554688 1.433594 14.554688"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 2.664062 22.03125 L 7.726562 19.109375 C 8.417969 18.710938 9.300781 18.949219 9.699219 19.640625 C 10.097656 20.332031 9.859375 21.207031 9.167969 21.605469 L 4.117188 24.527344 C 3.425781 24.925781 2.542969 24.695312 2.144531 24.003906 C 1.746094 23.3125 1.972656 22.429688 2.664062 22.03125"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 7.464844 27.886719 L 10.390625 22.828125 C 10.789062 22.136719 11.671875 21.898438 12.363281 22.304688 C 13.054688 22.703125 13.285156 23.578125 12.886719 24.269531 L 9.972656 29.328125 C 9.574219 30.019531 8.691406 30.257812 8 29.859375 C 7.308594 29.453125 7.066406 28.578125 7.464844 27.886719"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner11svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner11.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner11.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner11.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 4.109375 7.464844 L 9.167969 10.386719 C 9.859375 10.785156 10.097656 11.675781 9.695312 12.363281 C 9.296875 13.054688 8.417969 13.28125 7.730469 12.882812 L 2.671875 9.96875 C 1.980469 9.570312 1.742188 8.691406 2.140625 8 C 2.539062 7.3125 3.417969 7.066406 4.109375 7.464844"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 1.433594 14.554688 L 7.28125 14.554688 C 8.074219 14.554688 8.722656 15.207031 8.722656 16.003906 C 8.722656 16.800781 8.078125 17.441406 7.277344 17.4375 L 1.441406 17.445312 C 0.644531 17.445312 -0.00390625 16.800781 -0.00390625 16.003906 C -0.00390625 15.203125 0.636719 14.554688 1.433594 14.554688"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 2.664062 22.027344 L 7.726562 19.109375 C 8.417969 18.710938 9.300781 18.945312 9.699219 19.640625 C 10.097656 20.332031 9.859375 21.207031 9.167969 21.605469 L 4.113281 24.53125 C 3.425781 24.929688 2.539062 24.695312 2.140625 24.003906 C 1.746094 23.308594 1.972656 22.425781 2.664062 22.027344"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner12svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner12.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner12.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner12.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 9.96875 2.664062 L 12.890625 7.726562 C 13.289062 8.414062 13.050781 9.300781 12.359375 9.699219 C 11.667969 10.101562 10.792969 9.859375 10.394531 9.167969 L 7.472656 4.113281 C 7.070312 3.421875 7.304688 2.542969 7.996094 2.144531 C 8.6875 1.746094 9.570312 1.972656 9.96875 2.664062"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 4.105469 7.464844 L 9.167969 10.390625 C 9.859375 10.789062 10.09375 11.675781 9.695312 12.363281 C 9.296875 13.054688 8.417969 13.285156 7.726562 12.886719 L 2.671875 9.972656 C 1.980469 9.574219 1.742188 8.691406 2.140625 8.003906 C 2.539062 7.3125 3.414062 7.066406 4.105469 7.464844"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 1.433594 14.550781 L 7.28125 14.554688 C 8.078125 14.554688 8.726562 15.203125 8.722656 16.003906 C 8.722656 16.800781 8.078125 17.4375 7.28125 17.4375 L 1.441406 17.445312 C 0.644531 17.445312 -0.00390625 16.800781 -0.00390625 16.003906 C 0 15.203125 0.636719 14.550781 1.433594 14.550781"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner2svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner2.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner2.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner2.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 24.53125 4.109375 L 21.609375 9.171875 C 21.210938 9.863281 20.324219 10.097656 19.632812 9.699219 C 18.941406 9.300781 18.714844 8.421875 19.113281 7.730469 L 22.027344 2.671875 C 22.425781 1.980469 23.304688 1.742188 23.996094 2.140625 C 24.6875 2.539062 24.929688 3.417969 24.53125 4.109375"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 17.441406 1.433594 L 17.441406 7.28125 C 17.441406 8.078125 16.792969 8.722656 15.996094 8.722656 C 15.199219 8.722656 14.558594 8.078125 14.558594 7.28125 L 14.554688 1.445312 C 14.554688 0.644531 15.199219 -0.00390625 15.992188 0 C 16.792969 0 17.441406 0.636719 17.441406 1.433594"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 9.96875 2.664062 L 12.890625 7.726562 C 13.289062 8.417969 13.054688 9.304688 12.355469 9.699219 C 11.667969 10.097656 10.792969 9.859375 10.394531 9.167969 L 7.46875 4.117188 C 7.070312 3.425781 7.304688 2.542969 7.996094 2.140625 C 8.691406 1.746094 9.570312 1.972656 9.96875 2.664062"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner3svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner3.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner3.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner3.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 29.332031 9.96875 L 24.273438 12.890625 C 23.582031 13.289062 22.695312 13.050781 22.296875 12.359375 C 21.898438 11.671875 22.140625 10.796875 22.832031 10.398438 L 27.882812 7.472656 C 28.574219 7.074219 29.453125 7.308594 29.851562 7.996094 C 30.253906 8.6875 30.023438 9.570312 29.332031 9.96875"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 24.53125 4.109375 L 21.605469 9.171875 C 21.207031 9.859375 20.324219 10.09375 19.632812 9.695312 C 18.941406 9.296875 18.710938 8.417969 19.109375 7.730469 L 22.023438 2.671875 C 22.425781 1.980469 23.304688 1.742188 23.996094 2.140625 C 24.6875 2.539062 24.929688 3.417969 24.53125 4.109375"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 17.445312 1.4375 L 17.441406 7.28125 C 17.441406 8.078125 16.796875 8.730469 15.992188 8.722656 C 15.195312 8.722656 14.558594 8.082031 14.558594 7.28125 L 14.550781 1.441406 C 14.554688 0.644531 15.195312 -0.00390625 15.996094 -0.00390625 C 16.796875 0.00390625 17.445312 0.636719 17.445312 1.4375"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner4svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner4.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner4.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner4.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 30.5625 17.445312 L 24.71875 17.445312 C 23.917969 17.445312 23.273438 16.792969 23.273438 15.996094 C 23.273438 15.199219 23.917969 14.5625 24.714844 14.5625 L 30.554688 14.558594 C 31.351562 14.558594 31.996094 15.199219 31.996094 15.996094 C 31.996094 16.792969 31.359375 17.445312 30.5625 17.445312"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 29.332031 9.96875 L 24.269531 12.890625 C 23.578125 13.289062 22.695312 13.050781 22.296875 12.359375 C 21.898438 11.667969 22.136719 10.792969 22.828125 10.394531 L 27.878906 7.472656 C 28.570312 7.074219 29.453125 7.304688 29.851562 7.996094 C 30.25 8.6875 30.023438 9.570312 29.332031 9.96875"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 24.53125 4.109375 L 21.605469 9.171875 C 21.207031 9.859375 20.324219 10.101562 19.632812 9.695312 C 18.941406 9.296875 18.710938 8.421875 19.109375 7.730469 L 22.023438 2.671875 C 22.421875 1.980469 23.304688 1.742188 23.996094 2.140625 C 24.6875 2.542969 24.933594 3.421875 24.53125 4.109375"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner5svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner5.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner5.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner5.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 27.886719 24.535156 L 22.828125 21.613281 C 22.136719 21.210938 21.902344 20.324219 22.300781 19.636719 C 22.699219 18.945312 23.578125 18.714844 24.265625 19.113281 L 29.328125 22.027344 C 30.015625 22.429688 30.253906 23.308594 29.855469 23.996094 C 29.457031 24.6875 28.578125 24.933594 27.886719 24.535156"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 30.5625 17.445312 L 24.71875 17.441406 C 23.921875 17.441406 23.273438 16.792969 23.273438 15.996094 C 23.273438 15.199219 23.921875 14.558594 24.71875 14.558594 L 30.554688 14.554688 C 31.351562 14.554688 32 15.199219 32 15.996094 C 32 16.792969 31.363281 17.445312 30.5625 17.445312"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 29.335938 9.972656 L 24.269531 12.890625 C 23.578125 13.289062 22.695312 13.054688 22.296875 12.359375 C 21.898438 11.667969 22.136719 10.792969 22.828125 10.394531 L 27.882812 7.46875 C 28.574219 7.070312 29.457031 7.304688 29.855469 7.996094 C 30.25 8.691406 30.023438 9.574219 29.335938 9.972656"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner6svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner6.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner6.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner6.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 22.027344 29.335938 L 19.105469 24.273438 C 18.707031 23.582031 18.945312 22.695312 19.636719 22.296875 C 20.328125 21.898438 21.203125 22.140625 21.601562 22.832031 L 24.527344 27.886719 C 24.925781 28.574219 24.691406 29.457031 24 29.855469 C 23.308594 30.253906 22.425781 30.027344 22.027344 29.335938"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 27.890625 24.535156 L 22.828125 21.609375 C 22.136719 21.210938 21.902344 20.324219 22.300781 19.632812 C 22.699219 18.945312 23.578125 18.710938 24.269531 19.113281 L 29.324219 22.027344 C 30.015625 22.425781 30.257812 23.304688 29.859375 23.996094 C 29.457031 24.6875 28.582031 24.933594 27.890625 24.535156"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 30.5625 17.445312 L 24.714844 17.441406 C 23.917969 17.441406 23.269531 16.796875 23.273438 15.996094 C 23.273438 15.199219 23.917969 14.558594 24.714844 14.558594 L 30.554688 14.554688 C 31.351562 14.554688 32 15.199219 32 15.996094 C 31.996094 16.796875 31.359375 17.445312 30.5625 17.445312"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner7svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner7.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner7.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner7.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 14.550781 30.5625 L 14.550781 24.71875 C 14.550781 23.921875 15.203125 23.273438 16 23.273438 C 16.796875 23.273438 17.433594 23.921875 17.433594 24.71875 L 17.441406 30.554688 C 17.441406 31.351562 16.796875 32 16 32 C 15.203125 32 14.550781 31.359375 14.550781 30.5625"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 22.03125 29.335938 L 19.105469 24.269531 C 18.710938 23.582031 18.949219 22.695312 19.640625 22.296875 C 20.328125 21.898438 21.207031 22.140625 21.605469 22.828125 L 24.527344 27.882812 C 24.925781 28.574219 24.691406 29.457031 24.003906 29.855469 C 23.308594 30.253906 22.429688 30.027344 22.03125 29.335938"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 27.886719 24.535156 L 22.828125 21.609375 C 22.136719 21.210938 21.894531 20.324219 22.300781 19.632812 C 22.699219 18.941406 23.578125 18.710938 24.265625 19.109375 L 29.328125 22.023438 C 30.015625 22.425781 30.257812 23.304688 29.859375 23.996094 C 29.453125 24.6875 28.578125 24.933594 27.886719 24.535156"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner8svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner8.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner8.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner8.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 7.464844 27.890625 L 10.386719 22.828125 C 10.785156 22.136719 11.671875 21.902344 12.363281 22.300781 C 13.054688 22.699219 13.28125 23.578125 12.882812 24.269531 L 9.96875 29.328125 C 9.570312 30.019531 8.691406 30.257812 8 29.859375 C 7.308594 29.457031 7.066406 28.582031 7.464844 27.890625"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 14.554688 30.566406 L 14.554688 24.71875 C 14.554688 23.921875 15.203125 23.277344 16 23.277344 C 16.800781 23.273438 17.4375 23.921875 17.4375 24.71875 L 17.441406 30.554688 C 17.441406 31.351562 16.800781 32 16.003906 32 C 15.203125 32 14.554688 31.363281 14.554688 30.566406"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 22.027344 29.335938 L 19.105469 24.273438 C 18.707031 23.582031 18.941406 22.695312 19.640625 22.300781 C 20.332031 21.902344 21.203125 22.136719 21.601562 22.828125 L 24.527344 27.882812 C 24.925781 28.574219 24.691406 29.457031 24.003906 29.855469 C 23.304688 30.253906 22.425781 30.027344 22.027344 29.335938"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIndeterminateProgressSpinner9svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner9.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner9.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IndeterminateProgressSpinner9.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <path fill="rgb(48, 48, 48)" d="M 2.664062 22.03125 L 7.722656 19.105469 C 8.414062 18.707031 9.300781 18.949219 9.699219 19.636719 C 10.097656 20.328125 9.855469 21.203125 9.167969 21.601562 L 4.113281 24.527344 C 3.421875 24.925781 2.542969 24.691406 2.144531 24 C 1.746094 23.3125 1.972656 22.429688 2.664062 22.03125"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.87)" d="M 7.464844 27.890625 L 10.390625 22.828125 C 10.789062 22.136719 11.671875 21.902344 12.363281 22.300781 C 13.054688 22.699219 13.285156 23.578125 12.886719 24.269531 L 9.972656 29.328125 C 9.574219 30.019531 8.691406 30.257812 8 29.859375 C 7.308594 29.460938 7.066406 28.582031 7.464844 27.890625"/>
</span><span class="cx"> <path fill="rgba(48, 48, 48, 0.75)" d="M 14.550781 30.5625 L 14.554688 24.71875 C 14.554688 23.921875 15.199219 23.269531 16.003906 23.277344 C 16.800781 23.277344 17.4375 23.917969 17.4375 24.71875 L 17.445312 30.554688 C 17.445312 31.351562 16.800781 32 16 32 C 15.199219 31.996094 14.550781 31.359375 14.550781 30.5625"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesInfosvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Info.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Info.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Info.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg">
-        <circle cx="5" cy="5" r="5" fill="rgb(11, 36, 251)"/>
- <path d="M 4.998 2.998 C 5.552 2.998 5.997 2.549 5.997 1.998 C 5.997 1.448 5.552 0.999 4.998 0.999 C 4.448 0.999 3.999 1.448 3.999 1.998 C 3.999 2.549 4.448 2.998 4.998 2.998 L 4.998 2.998 L 4.998 2.998 Z M 3.999 7.994 C 3.999 8.544 4.448 8.993 4.998 8.993 C 5.552 8.993 5.997 8.544 5.997 7.994 L 5.997 4.996 C 5.997 4.446 5.552 3.997 4.998 3.997 C 4.448 3.997 3.999 4.446 3.999 4.996 L 3.999 7.994 L 3.999 7.994 Z" class="filled" fill="white"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+        <circle fill="rgb(11, 36, 251)" cx="5" cy="5" r="5"/>
+ <path fill="white" d="M 4.998 2.998 C 5.552 2.998 5.997 2.549 5.997 1.998 C 5.997 1.448 5.552 0.999 4.998 0.999 C 4.448 0.999 3.999 1.448 3.999 1.998 C 3.999 2.549 4.448 2.998 4.998 2.998 L 4.998 2.998 L 4.998 2.998 Z M 3.999 7.994 C 3.999 8.544 4.448 8.993 4.998 8.993 C 5.552 8.993 5.997 8.544 5.997 7.994 L 5.997 4.996 C 5.997 4.446 5.552 3.997 4.998 3.997 C 4.448 3.997 3.999 4.446 3.999 4.996 L 3.999 7.994 L 3.999 7.994 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIssuessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Issues.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Issues.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Issues.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path fill="none" stroke="black" stroke-linejoin="bevel" d="M 8.5 1.5 L 14.5 13.5 L 2.5 13.5 Z"/>
- <path fill="none" stroke="black" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
- <rect fill="black" x="8" y="11" width="1" height="1"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" stroke-linejoin="bevel" d="M 8.5 1.5 L 14.5 13.5 L 2.5 13.5 Z"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
+ <rect fill="currentColor" x="8" y="11" width="1" height="1"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesIssuesEnabledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/IssuesEnabled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/IssuesEnabled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/IssuesEnabled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(224, 164, 4)" stroke="rgb(224, 164, 4)" stroke-linejoin="bevel" d="M 8.5 1.5 L 14.5 13.5 L 2.5 13.5 Z"/>
</span><span class="cx"> <path fill="none" stroke="white" stroke-linecap="square" d="M 8.5 5.5 L 8.5 9.5"/>
</span><span class="cx"> <rect fill="white" x="8" y="11" width="1" height="1"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesLayerBorderssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/LayerBorders.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/LayerBorders.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/LayerBorders.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <rect x="0.5" y="0.5" width="5" height="5" fill="none" stroke="black"/>
- <rect x="0.5" y="7.5" width="5" height="5" fill="none" stroke="black"/>
- <rect x="7.5" y="0.5" width="5" height="5" fill="none" stroke="black"/>
- <rect x="7.5" y="7.5" width="5" height="5" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <rect fill="none" stroke="currentColor" x="0.5" y="0.5" width="5" height="5"/>
+ <rect fill="none" stroke="currentColor" x="0.5" y="7.5" width="5" height="5"/>
+ <rect fill="none" stroke="currentColor" x="7.5" y="0.5" width="5" height="5"/>
+ <rect fill="none" stroke="currentColor" x="7.5" y="7.5" width="5" height="5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesLockedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Locked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Locked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Locked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013, 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 8 10">
</ins><span class="cx"> <path fill="hsla(0, 0%, 0%, 0.5)" d="M 2.132812 3.183594 C 2.132812 2.128906 2.96875 1.273438 4 1.273438 C 5.03125 1.273438 5.867188 2.128906 5.867188 3.183594 L 5.867188 4.546875 L 2.132812 4.546875 Z M 7.109375 4.546875 L 7.109375 3.183594 C 7.109375 1.425781 5.71875 0 4 0 C 2.28125 0 0.890625 1.425781 0.890625 3.183594 L 0.890625 4.546875 C 0.398438 4.546875 0 4.953125 0 5.453125 L 0 9.089844 C 0 9.589844 0.398438 10 0.890625 10 L 7.109375 10 C 7.601562 10 8 9.589844 8 9.089844 L 8 5.453125 C 8 4.953125 7.601562 4.546875 7.109375 4.546875"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesLogsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Log.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Log.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Log.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" version="1.1">
- <path d="M 3.998 6.998 L 3.998 2.001 C 3.998 1.451 3.553 1.002 2.999 1.002 C 2.449 1.002 2 1.451 2 2.001 L 2 7.997 C 2 8.272 2.112 8.522 2.293 8.703 C 2.474 8.885 2.724 8.996 2.999 8.996 L 7.009 8.996 C 7.559 8.996 8.008 8.551 8.008 7.997 C 8.008 7.447 7.559 6.998 7.009 6.998 L 3.998 6.998 L 3.998 6.998 Z M 5 5 C 5 5.554 5.449 5.999 5.999 5.999 L 7.005 5.999 C 7.555 5.999 8.004 5.554 8.004 5 C 8.004 4.45 7.555 4.001 7.005 4.001 L 5.999 4.001 C 5.449 4.001 5 4.45 5 5 Z M 5 2.001 C 5 2.555 5.449 3 5.999 3 L 7.005 3 C 7.555 3 8.004 2.555 8.004 2.001 C 8.004 1.451 7.555 1.002 7.005 1.002 L 5.999 1.002 C 5.449 1.002 5 1.451 5 2.001 Z" class="filled" fill="rgb(181, 181, 181)"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="rgb(181, 181, 181)" d="M 3.998 6.998 L 3.998 2.001 C 3.998 1.451 3.553 1.002 2.999 1.002 C 2.449 1.002 2 1.451 2 2.001 L 2 7.997 C 2 8.272 2.112 8.522 2.293 8.703 C 2.474 8.885 2.724 8.996 2.999 8.996 L 7.009 8.996 C 7.559 8.996 8.008 8.551 8.008 7.997 C 8.008 7.447 7.559 6.998 7.009 6.998 L 3.998 6.998 L 3.998 6.998 Z M 5 5 C 5 5.554 5.449 5.999 5.999 5.999 L 7.005 5.999 C 7.555 5.999 8.004 5.554 8.004 5 C 8.004 4.45 7.555 4.001 7.005 4.001 L 5.999 4.001 C 5.449 4.001 5 4.45 5 5 Z M 5 2.001 C 5 2.555 5.449 3 5.999 3 L 7.005 3 C 7.555 3 8.004 2.555 8.004 2.001 C 8.004 1.451 7.555 1.002 7.005 1.002 L 5.999 1.002 C 5.449 1.002 5 1.451 5 2.001 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesLogssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Logs.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Logs.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Logs.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path fill="none" stroke="black" d="M 4.5 2.5 C 3 2.5 2.5 3 2.5 4.5 L 2.5 10.5 C 2.5 12 3 12.5 4.5 12.5 L 5.5 12.5 L 5.5 15.5 L 9 12.5 L 12 12.5 L 12 12.5 C 13 12.5 13.5 12 13.5 10.5 L 13.5 4.5 C 13.5 3 12 2.5 11.5 2.5 L 4.5 2.5 4"/>
- <path fill="none" stroke="black" stroke-linecap="square" d="M 5.5 5.5 L 10.5 5.5"/>
- <path fill="none" stroke="black" stroke-linecap="square" d="M 5.5 7.5 L 10.5 7.5"/>
- <path fill="none" stroke="black" stroke-linecap="square" d="M 5.5 9.5 L 10.5 9.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 4.5 2.5 C 3 2.5 2.5 3 2.5 4.5 L 2.5 10.5 C 2.5 12 3 12.5 4.5 12.5 L 5.5 12.5 L 5.5 15.5 L 9 12.5 L 12 12.5 L 12 12.5 C 13 12.5 13.5 12 13.5 10.5 L 13.5 4.5 C 13.5 3 12 2.5 11.5 2.5 L 4.5 2.5 4"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 5.5 5.5 L 10.5 5.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 5.5 7.5 L 10.5 7.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 5.5 9.5 L 10.5 9.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesMinussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Minus.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Minus.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Minus.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <line class="stroked" fill="none" stroke="black" x1="1" y1="6.5" x2="12" y2="6.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <line fill="none" stroke="currentColor" x1="1" y1="6.5" x2="12" y2="6.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNativesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Native.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Native.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Native.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 9.5625 12.742188 C 9.230469 12.742188 8.917969 12.574219 8.734375 12.300781 C 8.734375 12.300781 7.816406 10.941406 6.90625 9.585938 C 6.90625 10.617188 6.90625 11.742188 6.90625 11.742188 C 6.90625 12.292969 6.457031 12.742188 5.90625 12.742188 L 4.578125 12.742188 C 4.027344 12.742188 3.578125 12.292969 3.578125 11.742188 L 3.578125 3.792969 C 3.578125 3.242188 4.027344 2.792969 4.578125 2.792969 L 6.035156 2.792969 C 6.367188 2.792969 6.675781 2.957031 6.863281 3.230469 C 6.863281 3.230469 7.789062 4.601562 8.71875 5.96875 C 8.71875 4.925781 8.71875 3.792969 8.71875 3.792969 C 8.71875 3.242188 9.164062 2.792969 9.71875 2.792969 L 11.046875 2.792969 C 11.597656 2.792969 12.046875 3.242188 12.046875 3.792969 L 12.046875 11.742188 C 12.046875 12.292969 11.597656 12.742188 11.046875 12.742188 L 9.5625 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemCurleyBracessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemCurleyBraces.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemCurleyBraces.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemCurleyBraces.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <path d="M 5 0.5 L 2.5 1 L 2.5 5 L 1.5 6.5 L 2.5 8 L 2.5 12 L 5 12.5" fill="none" stroke="black" stroke-linecap="square"/>
- <path d="M 8 0.5 L 10.5 1 L 10.5 5 L 11.5 6.5 L 10.5 8 L 10.5 12 L 8 12.5" fill="none" stroke="black" stroke-linecap="square"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="M 5 0.5 L 2.5 1 L 2.5 5 L 1.5 6.5 L 2.5 8 L 2.5 12 L 5 12.5" fill="none" stroke="currentColor" stroke-linecap="square"/>
+ <path d="M 8 0.5 L 10.5 1 L 10.5 5 L 11.5 6.5 L 10.5 8 L 10.5 12 L 8 12.5" fill="none" stroke="currentColor" stroke-linecap="square"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemTrashsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTrash.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTrash.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTrash.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,12 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <clipPath id="1">
- <path d="M 1 2 L 1 3 L 2 3 L 3 15 L 12 15 L 13 3 L 14 3 L 14 2 L 1 2 L 1 2 Z"/>
- </clipPath>
- <path fill="none" stroke="black" stroke-width="2" clip-path="url(#1)" d="M 1 2 L 1 3 L 2 3 L 3 15 L 12 15 L 13 3 L 14 3 L 14 2 L 1 2 L 1 2 Z"/>
- <rect x="5.5" y="0.5" width="4" height="2" fill="none" stroke="black"/>
- <path d="M 5.5 4 L 5.5 13" stroke="black"/>
- <path d="M 7.5 4 L 7.5 13" stroke="black"/>
- <path d="M 9.5 4 L 9.5 13" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 3.5 14.5 L 2.5 2.5 L 1.5 2.5 L 13.5 2.5 L 12.5 2.5 L 11.5 14.5 L 3.5 14.5 Z"/>
+ <rect fill="none" stroke="currentColor" x="5.5" y="0.5" width="4" height="2"/>
+ <path fill="none" stroke="currentColor" d="M 5.5 4 L 5.5 13 M 7.5 4 L 7.5 13 M 9.5 4 L 9.5 13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNavigationItemTypessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTypes.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTypes.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/NavigationItemTypes.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 14">
- <rect class="stroked" fill="none" stroke="black" x="0.5" y="0.5" width="12" height="13" rx="2"/>
- <path class="stroked" fill="none" stroke="black" stroke-linecap="square" d="M 6.5 5.5 L 6.5 9.5 M 4.0 4.5 L 9.0 4.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 14">
+ <rect fill="none" stroke="currentColor" x="0.5" y="0.5" width="12" height="13" rx="2"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 6.5 5.5 L 6.5 9.5 M 4.0 4.5 L 9.0 4.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNetworksvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Network.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Network.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Network.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <circle cx="8" cy="8" r="7.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 5.5 1.0 L 5.5 10.5" fill="none" stroke="black"/>
- <path d="M 3.0 9.0 L 5.5 11.0 L 8.0 9.0" fill="none" stroke="black"/>
- <path d="M 10.5 15.0 L 10.5 5.5" fill="none" stroke="black"/>
- <path d="M 13.0 7.0 L 10.5 5.0 L 8.0 7.0" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <circle fill="none" stroke="currentColor" cx="8" cy="8" r="7.5"/>
+ <path fill="none" stroke="currentColor" d="M 5.5 1.0 L 5.5 10.5"/>
+ <path fill="none" stroke="currentColor" d="M 3.0 9.0 L 5.5 11.0 L 8.0 9.0"/>
+ <path fill="none" stroke="currentColor" d="M 10.5 15.0 L 10.5 5.5"/>
+ <path fill="none" stroke="currentColor" d="M 13.0 7.0 L 10.5 5.0 L 8.0 7.0"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNewTabsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/NewTab.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/NewTab.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/NewTab.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect x="0.5" y="0.5" width="15" height="15" rx="2" class="stroked" fill="none" stroke="black"/>
- <path d="M 8 3 L 8 13 M 3 8 L 13 8" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="0.5" width="15" height="15" rx="2"/>
+ <path fill="none" stroke="currentColor" d="M 8 3 L 8 13 M 3 8 L 13 8"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesNewTabPlussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/NewTabPlus.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/NewTabPlus.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/NewTabPlus.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 15 15" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 7.5 2 V 13 M 2 7.5 H 13" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 7.5 2 V 13 M 2 7.5 H 13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPaintFlashingsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/PaintFlashing.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/PaintFlashing.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/PaintFlashing.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path d="M 1.367188 13.789062 C 1.367188 13.789062 2.820312 14.105469 3.289062 12.722656 C 3.757812 11.34375 3.960938 10.867188 5.222656 10.976562 C 5.222656 10.976562 5.714844 11.886719 6.933594 12.308594 C 6.933594 12.308594 5.75 16.207031 1.367188 13.789062 Z M 14.339844 2.351562 C 14.054688 2.839844 10.289062 8.804688 9.554688 9.65625 C 8.820312 10.511719 6.917969 11.71875 6.917969 11.71875 C 6.003906 11.242188 5.710938 10.738281 5.710938 10.738281 C 5.710938 10.738281 6.328125 8.992188 7.230469 7.683594 C 8.132812 6.378906 13.050781 1.949219 13.460938 1.636719 C 13.871094 1.320312 14.625 1.867188 14.339844 2.351562 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 1.367188 13.789062 C 1.367188 13.789062 2.820312 14.105469 3.289062 12.722656 C 3.757812 11.34375 3.960938 10.867188 5.222656 10.976562 C 5.222656 10.976562 5.714844 11.886719 6.933594 12.308594 C 6.933594 12.308594 5.75 16.207031 1.367188 13.789062 Z M 14.339844 2.351562 C 14.054688 2.839844 10.289062 8.804688 9.554688 9.65625 C 8.820312 10.511719 6.917969 11.71875 6.917969 11.71875 C 6.003906 11.242188 5.710938 10.738281 5.710938 10.738281 C 5.710938 10.738281 6.328125 8.992188 7.230469 7.683594 C 8.132812 6.378906 13.050781 1.949219 13.460938 1.636719 C 13.871094 1.320312 14.625 1.867188 14.339844 2.351562 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPausesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Pause.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Pause.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Pause.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <rect fill="none" stroke="black" x="2.5" y="1.5" width="3" height="12"/>
- <rect fill="none" stroke="black" x="9.5" y="1.5" width="3" height="12"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <rect fill="none" stroke="currentColor" x="2.5" y="1.5" width="3" height="12"/>
+ <rect fill="none" stroke="currentColor" x="9.5" y="1.5" width="3" height="12"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPausedBreakpointsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/PausedBreakpoint.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/PausedBreakpoint.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/PausedBreakpoint.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.78125 7.769531 L 7.136719 7.769531 C 7.757812 7.769531 8.246094 7.636719 8.605469 7.371094 C 8.96875 7.105469 9.148438 6.746094 9.148438 6.292969 C 9.148438 5.496094 8.59375 5.097656 7.488281 5.097656 L 6.78125 5.097656 Z M 5 12 L 5 4 L 8.042969 4 C 9.105469 4 9.863281 4.164062 10.316406 4.488281 C 10.773438 4.816406 11 5.359375 11 6.125 C 11 6.988281 10.695312 7.660156 10.085938 8.144531 C 9.480469 8.625 8.628906 8.863281 7.535156 8.863281 L 6.78125 8.863281 L 6.78125 12 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPencilsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Pencil.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Pencil.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Pencil.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 3.323 14.956 L 2.346 10.828 L 8.125 1.468 L 13.23 4.62 L 7.451 13.98 L 3.323 14.956 Z M 6.711 4.709 L 10.966 7.335" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 3.323 14.956 L 2.346 10.828 L 8.125 1.468 L 13.23 4.62 L 7.451 13.98 L 3.323 14.956 Z M 6.711 4.709 L 10.966 7.335"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPlus13svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Plus13.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Plus13.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Plus13.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <path class="stroked" fill="none" stroke="black" d="M 6.5 1 V 12 M 1 6.5 H 12"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path fill="none" stroke="currentColor" d="M 6.5 1 V 12 M 1 6.5 H 12"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPlus15svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Plus15.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Plus15.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Plus15.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <path class="stroked" fill="none" stroke="black" d="M 7.5 1 V 14 M 1 7.5 H 14"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 7.5 1 V 14 M 1 7.5 H 14"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesPseudoElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/PseudoElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/PseudoElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/PseudoElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.78125 7.769531 L 7.136719 7.769531 C 7.757812 7.769531 8.246094 7.636719 8.605469 7.371094 C 8.96875 7.105469 9.148438 6.746094 9.148438 6.292969 C 9.148438 5.496094 8.59375 5.097656 7.488281 5.097656 L 6.78125 5.097656 Z M 5 12 L 5 4 L 8.042969 4 C 9.105469 4 9.863281 4.164062 10.316406 4.488281 C 10.773438 4.816406 11 5.359375 11 6.125 C 11 6.988281 10.695312 7.660156 10.085938 8.144531 C 9.480469 8.625 8.628906 8.863281 7.535156 8.863281 L 6.78125 8.863281 L 6.78125 12 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesRecordsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Record.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Record.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Record.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
</ins><span class="cx"> <circle fill="red" cx="6.5" cy="6.5" r="6"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReflectionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Reflection.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Reflection.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Reflection.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(148, 183, 219)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(106, 136, 170)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 7 7.632812 L 7.027344 7.632812 C 8.28125 7.632812 9.0625 7.144531 9.0625 6.167969 C 9.0625 5.453125 8.347656 5.097656 7.230469 5.097656 L 7 5.097656 Z M 5 12 L 5 4 L 8.109375 4 C 9.800781 4 11 4.675781 11 6 C 11 6.496094 10.855469 6.941406 10.570312 7.347656 C 10.285156 7.753906 9.53125 8.050781 9.03125 8.265625 L 11.75 12 L 9.402344 12 L 7.34375 8.730469 L 7 8.730469 L 7 12 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReloadFullsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ReloadFull.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ReloadFull.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ReloadFull.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="1 1 13 13">
- <path class="filled" d="M 12.007 8.01 L 12.007 8.488 L 12 8.488 C 12 10.974 9.985 12.988 7.5 12.988 C 5.015 12.988 3 10.974 3 8.488 C 3 6.17 4.759 4.284 7.012 4.037 L 7.012 6.549 L 11.519 3.775 L 7.012 1 L 7.012 3.013 C 4.203 3.26 2 5.615 2 8.488 C 2 11.526 4.462 13.988 7.5 13.988 C 10.509 13.988 12.95 11.571 12.996 8.572 L 13 8.572 L 13 8.01 L 12.007 8.01 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="1 1 13 13">
+ <path fill="currentColor" d="M 12.007 8.01 L 12.007 8.488 L 12 8.488 C 12 10.974 9.985 12.988 7.5 12.988 C 5.015 12.988 3 10.974 3 8.488 C 3 6.17 4.759 4.284 7.012 4.037 L 7.012 6.549 L 11.519 3.775 L 7.012 1 L 7.012 3.013 C 4.203 3.26 2 5.615 2 8.488 C 2 11.526 4.462 13.988 7.5 13.988 C 10.509 13.988 12.95 11.571 12.996 8.572 L 13 8.572 L 13 8.01 L 12.007 8.01 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReloadToolbarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ReloadToolbar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ReloadToolbar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ReloadToolbar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <clipPath id="1">
- <path d="M 6 16 L 0 16 L 0 2 L 7 2 L 7 9 L 14 9 L 14 16 L 6 16 Z"/>
- </clipPath>
- <path clip-path="url(#1)" class="stroked" fill="none" stroke="black" d="M 7.5 15 C 10.8137087 15 13.5 12.3137087 13.5 9 C 13.5 5.68629134 10.8137087 3 7.5 3 C 4.18629134 3 1.5 5.68629134 1.5 9 C 1.5 12.3137087 4.18629134 15 7.5 15 Z"/>
- <path class="filled" fill="black" d="M 7 0 L 7 6.5 L 12.5 3.5 L 7 0 Z"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 7.5 15 C 4.18629134 15 1.5 12.3137087 1.5 9 C 1.5 5.85466795 3.9202346 3.27461231 7 3.02053689 L 8 3 M 13.5 9 C 13.5 12.3137087 10.8137087 15 7.5 15"/>
+ <path fill="currentColor" d="M 7 0 L 7 6.5 L 12.5 3.5 L 7 0 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReplayPauseButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPauseButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPauseButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPauseButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,10 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><del>-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="36px" height="36px" viewBox="0 0 36 36" enable-background="new 0 0 36 36" xml:space="preserve">
-<g>
</del><ins>+<!-- Copyright © 2014 Apple Inc. All rights reserved. -->
+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
</ins><span class="cx"> <rect x="5.656" y="4.202" width="9.255" height="27.597"/>
</span><span class="cx"> <rect x="21.09" y="4.202" width="9.254" height="27.597"/>
</span><del>-</g>
</del><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReplayPlayButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPlayButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPlayButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ReplayPlayButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><del>-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="36px" height="36px" viewBox="0 0 36 36" enable-background="new 0 0 36 36" xml:space="preserve">
-<polygon fill="#38AF4A" points="5.625,4.21 30.375,18 5.625,31.79 "/>
</del><ins>+<!-- Copyright © 2014 Apple Inc. All rights reserved. -->
+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
+ <polygon fill="rgb(56, 175, 74)" points="5.625 4.21 30.375 18 5.625 31.79"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesReplayRecordingButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ReplayRecordingButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ReplayRecordingButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ReplayRecordingButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><del>-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="36px" height="36px" viewBox="0 0 36 36" enable-background="new 0 0 36 36" xml:space="preserve">
-<circle fill="#EE2D24" cx="18" cy="18" r="13.605"/>
</del><ins>+<!-- Copyright © 2014 Apple Inc. All rights reserved. -->
+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
+ <circle fill="rgb(238, 45, 36)" cx="18" cy="18" r="14"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesRequestsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Request.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Request.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Request.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(228, 198, 172)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(186, 157, 132)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(196, 166, 140)" d="M 6.796875 12.742188 C 6.242188 12.742188 5.796875 12.292969 5.796875 11.742188 L 5.796875 10.417969 C 5.796875 10.25 5.835938 10.09375 5.910156 9.953125 C 5.835938 9.816406 5.796875 9.660156 5.796875 9.492188 L 5.796875 9.339844 C 5.796875 8.511719 6.152344 7.699219 6.847656 6.925781 L 7.234375 6.503906 C 7.671875 6.019531 7.734375 5.757812 7.746094 5.671875 C 7.691406 5.660156 7.609375 5.652344 7.488281 5.652344 C 7.097656 5.652344 6.613281 5.78125 6.046875 6.039062 C 5.914062 6.101562 5.773438 6.128906 5.632812 6.128906 C 5.441406 6.128906 5.253906 6.078125 5.089844 5.972656 C 4.804688 5.785156 4.628906 5.472656 4.628906 5.128906 L 4.628906 3.917969 C 4.628906 3.476562 4.917969 3.089844 5.339844 2.960938 C 6.144531 2.71875 6.941406 2.59375 7.71875 2.59375 C 8.769531 2.59375 9.632812 2.816406 10.285156 3.25 C 11.058594 3.761719 11.46875 4.511719 11.46875 5.414062 C 11.46875 6.214844 11.066406
7 10.269531 7.753906 L 9.917969 8.09375 C 9.546875 8.441406 9.460938 8.601562 9.453125 8.621094 C 9.4375 8.652344 9.390625 8.765625 9.390625 9.035156 L 9.390625 9.492188 C 9.390625 9.660156 9.351562 9.816406 9.277344 9.953125 C 9.351562 10.09375 9.390625 10.25 9.390625 10.417969 L 9.390625 11.742188 C 9.390625 12.292969 8.945312 12.742188 8.390625 12.742188 L 6.796875 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesResourcessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Resources.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Resources.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Resources.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 2.5 1.5 L 2.5 14.5 L 13.5 14.5 L 13.5 5.5 L 9.5 1.5 L 2.5 1.5 Z" class="stroked" fill="none" stroke="black"/>
- <path d="M 9.0 3.0 L 9.0 6.0 L 12.0 6.0 Z" class="filled" fill="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 2.5 1.5 L 2.5 14.5 L 13.5 14.5 L 13.5 5.5 L 9.5 1.5 L 2.5 1.5 Z"/>
+ <path fill="currentColor" d="M 9.0 3.0 L 9.0 6.0 L 12.0 6.0 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesResponsesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Response.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Response.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Response.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(148, 183, 219)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(106, 136, 170)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(113, 146, 184)" d="M 7.292969 12.707031 L 3.292969 8.707031 C 3.101562 8.515625 3 8.257812 3 8 C 3 7.871094 3.027344 7.742188 3.074219 7.617188 C 3.230469 7.242188 3.59375 7 4 7 C 4 7 5.109375 7 6 7 C 6 5.875 6 4 6 4 C 6 3.445312 6.445312 3 7 3 L 9 3 C 9.554688 3 10 3.445312 10 4 C 10 4 10 5.875 10 7 C 10.890625 7 12 7 12 7 C 12.40625 7 12.769531 7.242188 12.925781 7.617188 C 12.972656 7.742188 13 7.871094 13 8 C 13 8.257812 12.898438 8.515625 12.707031 8.707031 L 8.707031 12.707031 C 8.511719 12.902344 8.253906 13 8 13 C 7.746094 13 7.488281 12.902344 7.292969 12.707031"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesResultLinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ResultLine.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ResultLine.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ResultLine.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(245, 245, 245)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 191, 191)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 12 6 L 4 6 L 4 4 L 12 4 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesResumesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Resume.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Resume.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Resume.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <clipPath id="2">
- <path d="M 6 13 L 6 2 L 15 7.5 L 6 13 L 6 13 Z"/>
- </clipPath>
- <path fill="none" stroke="black" stroke-width="2" clip-path="url(#2)" d="M 6 13 L 6 2 L 15 7.5 L 6 13 L 6 13 Z"/>
- <rect fill="none" stroke="black" x="0.5" y="2.5" width="3" height="10"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path fill="none" stroke="currentColor" d="M 6.5 2.5 L 6.5 12.5 L 14.5 7.5 L 6.5 2.5 Z"/>
+ <rect fill="none" stroke="currentColor" x="0.5" y="2.5" width="3" height="10"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesSearchResultssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/SearchResults.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/SearchResults.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/SearchResults.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect x="0.5" y="0.5" width="15" height="15" rx="2" class="stroked" fill="none" stroke="black"/>
- <circle cx="7" cy="7" r="3" class="stroked" fill="none" stroke="black"/>
- <path d="M 9.5 9.5 L 12.5 12.5" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="0.5" y="0.5" width="15" height="15" rx="2"/>
+ <circle fill="none" stroke="currentColor" cx="7" cy="7" r="3"/>
+ <path fill="none" stroke="currentColor" d="M 9.5 9.5 L 12.5 12.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesShadowDOMsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ShadowDOM.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ShadowDOM.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ShadowDOM.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <path d="M 3.5 0.5 L 0.5 6.5 L 3.5 12.5" fill="none" stroke="black" stroke-linecap="square"/>
- <path d="M 9.5 12.5 L 12.5 6.5 L 9.5 0.5" fill="none" stroke="black" stroke-linecap="square" opacity="0.5"/>
- <path d="M 5.5 0.5 L 2.5 6.5 L 5.5 12.5" fill="none" stroke="black" stroke-linecap="square" opacity="0.5"/>
- <path d="M 7.5 12.5 L 10.5 6.5 L 7.5 0.5" fill="none" stroke="black" stroke-linecap="square"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 3.5 0.5 L 0.5 6.5 L 3.5 12.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" opacity="0.5" d="M 9.5 12.5 L 12.5 6.5 L 9.5 0.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" opacity="0.5" d="M 5.5 0.5 L 2.5 6.5 L 5.5 12.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 7.5 12.5 L 10.5 6.5 L 7.5 0.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesSortIndicatorArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/SortIndicatorArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/SortIndicatorArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/SortIndicatorArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 9 8">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 9 8">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesSplitToggleUpsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/SplitToggleUp.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/SplitToggleUp.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/SplitToggleUp.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path d="M 12 7 L 8 3 L 4 7" fill="none" stroke="black"/>
- <path d="M 12 13 L 8 9 L 4 13" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 12 7 L 8 3 L 4 7"/>
+ <path fill="none" stroke="currentColor" d="M 12 13 L 8 9 L 4 13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStepIntosvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StepInto.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StepInto.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StepInto.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <rect fill="none" stroke="black" x="3.5" y="10.5" width="8" height="2"/>
- <path fill="none" stroke="black" d="M 7.5 8.5 L 7.5 1"/>
- <path fill="none" stroke="black" d="M 10.5 5.5 L 7.5 8.5 L 4.5 5.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <rect fill="none" stroke="currentColor" x="3.5" y="10.5" width="8" height="2"/>
+ <path fill="none" stroke="currentColor" d="M 7.5 8.5 L 7.5 1"/>
+ <path fill="none" stroke="currentColor" d="M 10.5 5.5 L 7.5 8.5 L 4.5 5.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStepOutsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StepOut.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StepOut.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StepOut.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <rect fill="none" stroke="black" x="3.5" y="10.5" width="8" height="2"/>
- <path fill="none" stroke="black" d="M 7.5 9 L 7.5 2"/>
- <path fill="none" stroke="black" d="M 10.5 4.5 L 7.5 1.5 L 4.5 4.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <rect fill="none" stroke="currentColor" x="3.5" y="10.5" width="8" height="2"/>
+ <path fill="none" stroke="currentColor" d="M 7.5 9 L 7.5 2"/>
+ <path fill="none" stroke="currentColor" d="M 10.5 4.5 L 7.5 1.5 L 4.5 4.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStepOversvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StepOver.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StepOver.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StepOver.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,18 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
- <clipPath id="1">
- <rect x="0" y="0" width="14" height="9"/>
- </clipPath>
- <clipPath id="2">
- <path d="M 14.5 9 L 7.5 1.5 L 0.5 9"/>
- </clipPath>
- <clipPath id="3">
- <path d="M 14 4.5 L 14 9 L 9.5 9"/>
- </clipPath>
- <rect fill="none" stroke="black" x="3.5" y="10.5" width="8" height="2"/>
- <g clip-path="url(#1)">
- <path fill="none" stroke="black" stroke-width="2" clip-path="url(#2)" d="M 14.5 9 L 7.5 1.5 L 0.5 9"/>
- </g>
- <path fill="none" stroke="black" stroke-width="2" clip-path="url(#3)" d="M 14 4.5 L 14 9 L 9.5 9"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <rect fill="none" stroke="currentColor" x="3.5" y="10.5" width="8" height="2"/>
+ <path fill="currentColor" d="M 13 5.5 L 14 4.5 L 14 9 L 9.5 9 L 10.5 8 L 12.2953461 8 L 7.50812492 3.19898186 L 1.70710678 9 L 0.292893219 9 L 7.5 1.79289322 L 13 7.29289322 L 13 5.5 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStopsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Stop.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Stop.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Stop.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
- <rect x="1" y="1" width="11" height="11"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <rect fill="currentColor" x="1" y="1" width="11" height="11"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStoragesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Storage.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Storage.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Storage.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <path d="M 13.4475645 6.5701038 C 14.1131101 6.95915994 14.5 7.44243562 14.5 8 C 14.5 9.52952015 11.5885604 10.5 8 10.5 C 4.41143956 10.5 1.5 9.52952015 1.5 8 C 1.5 7.44243562 1.88688992 6.95915994 2.55243554 6.5701038 C 2.95984566 6.75017534 3.43583057 6.90963763 3.96620982 7.04342621 C 3.94919939 7.04895616 3.93228678 7.05452352 3.91547313 7.06012807 C 2.98303097 7.37094212 2.5 7.7516133 2.5 8 C 2.5 8.2483867 2.98303097 8.62905788 3.91547313 8.93987193 C 4.97873363 9.2942921 6.43777802 9.5 8 9.5 C 9.56222198 9.5 11.0212664 9.2942921 12.0845269 8.93987193 C 13.016969 8.62905788 13.5 8.2483867 13.5 8 C 13.5 7.7516133 13.016969 7.37094212 12.0845269 7.06012807 C 12.0677132 7.05452352 12.0508006 7.04895616 12.0337902 7.04342621 C 12.5641694 6.90963763 13.0401543 6.75017534 13.4475645 6.5701038 Z" class="filled" fill="black"/>
- <path d="M 13.4475645 10.5701038 C 14.1131101 10.9591599 14.5 11.4424356 14.5 12 C 14.5 13.5295201 11.5885604 14.5 8 14.5 C 4.41143956 14.5 1.5 13.5295201 1.5 12 C 1.5 11.4424356 1.88688992 10.9591599 2.55243554 10.5701038 C 2.95984566 10.7501753 3.43583057 10.9096376 3.96620982 11.0434262 C 3.94919939 11.0489562 3.93228678 11.0545235 3.91547313 11.0601281 C 2.98303097 11.3709421 2.5 11.7516133 2.5 12 C 2.5 12.2483867 2.98303097 12.6290579 3.91547313 12.9398719 C 4.97873363 13.2942921 6.43777802 13.5 8 13.5 C 9.56222198 13.5 11.0212664 13.2942921 12.0845269 12.9398719 C 13.016969 12.6290579 13.5 12.2483867 13.5 12 C 13.5 11.7516133 13.016969 11.3709421 12.0845269 11.0601281 C 12.0677132 11.0545235 12.0508006 11.0489562 12.0337902 11.0434262 C 12.5641694 10.9096376 13.0401543 10.7501753 13.4475645 10.5701038 Z" class="filled" fill="black"/>
- <path d="M 14.5 4 C 14.5 2.47047985 11.5885604 1.5 8 1.5 C 4.41143956 1.5 1.5 2.47047985 1.5 4 C 1.5 5.52952015 4.41143956 6.5 8 6.5 C 11.5885604 6.5 14.5 5.52952015 14.5 4 Z M 3.91547313 4.93987193 C 2.98303097 4.62905788 2.5 4.2483867 2.5 4 C 2.5 3.7516133 2.98303097 3.37094212 3.91547313 3.06012807 C 4.97873363 2.7057079 6.43777802 2.5 8 2.5 C 9.56222198 2.5 11.0212664 2.7057079 12.0845269 3.06012807 C 13.016969 3.37094212 13.5 3.7516133 13.5 4 C 13.5 4.2483867 13.016969 4.62905788 12.0845269 4.93987193 C 11.0212664 5.2942921 9.56222198 5.5 8 5.5 C 6.43777802 5.5 4.97873363 5.2942921 3.91547313 4.93987193 Z" class="filled" fill="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 13.4475645 6.5701038 C 14.1131101 6.95915994 14.5 7.44243562 14.5 8 C 14.5 9.52952015 11.5885604 10.5 8 10.5 C 4.41143956 10.5 1.5 9.52952015 1.5 8 C 1.5 7.44243562 1.88688992 6.95915994 2.55243554 6.5701038 C 2.95984566 6.75017534 3.43583057 6.90963763 3.96620982 7.04342621 C 3.94919939 7.04895616 3.93228678 7.05452352 3.91547313 7.06012807 C 2.98303097 7.37094212 2.5 7.7516133 2.5 8 C 2.5 8.2483867 2.98303097 8.62905788 3.91547313 8.93987193 C 4.97873363 9.2942921 6.43777802 9.5 8 9.5 C 9.56222198 9.5 11.0212664 9.2942921 12.0845269 8.93987193 C 13.016969 8.62905788 13.5 8.2483867 13.5 8 C 13.5 7.7516133 13.016969 7.37094212 12.0845269 7.06012807 C 12.0677132 7.05452352 12.0508006 7.04895616 12.0337902 7.04342621 C 12.5641694 6.90963763 13.0401543 6.75017534 13.4475645 6.5701038 Z"/>
+ <path fill="currentColor" d="M 13.4475645 10.5701038 C 14.1131101 10.9591599 14.5 11.4424356 14.5 12 C 14.5 13.5295201 11.5885604 14.5 8 14.5 C 4.41143956 14.5 1.5 13.5295201 1.5 12 C 1.5 11.4424356 1.88688992 10.9591599 2.55243554 10.5701038 C 2.95984566 10.7501753 3.43583057 10.9096376 3.96620982 11.0434262 C 3.94919939 11.0489562 3.93228678 11.0545235 3.91547313 11.0601281 C 2.98303097 11.3709421 2.5 11.7516133 2.5 12 C 2.5 12.2483867 2.98303097 12.6290579 3.91547313 12.9398719 C 4.97873363 13.2942921 6.43777802 13.5 8 13.5 C 9.56222198 13.5 11.0212664 13.2942921 12.0845269 12.9398719 C 13.016969 12.6290579 13.5 12.2483867 13.5 12 C 13.5 11.7516133 13.016969 11.3709421 12.0845269 11.0601281 C 12.0677132 11.0545235 12.0508006 11.0489562 12.0337902 11.0434262 C 12.5641694 10.9096376 13.0401543 10.7501753 13.4475645 10.5701038 Z"/>
+ <path fill="currentColor" d="M 14.5 4 C 14.5 2.47047985 11.5885604 1.5 8 1.5 C 4.41143956 1.5 1.5 2.47047985 1.5 4 C 1.5 5.52952015 4.41143956 6.5 8 6.5 C 11.5885604 6.5 14.5 5.52952015 14.5 4 Z M 3.91547313 4.93987193 C 2.98303097 4.62905788 2.5 4.2483867 2.5 4 C 2.5 3.7516133 2.98303097 3.37094212 3.91547313 3.06012807 C 4.97873363 2.7057079 6.43777802 2.5 8 2.5 C 9.56222198 2.5 11.0212664 2.7057079 12.0845269 3.06012807 C 13.016969 3.37094212 13.5 3.7516133 13.5 4 C 13.5 4.2483867 13.016969 4.62905788 12.0845269 4.93987193 C 11.0212664 5.2942921 9.56222198 5.5 8 5.5 C 6.43777802 5.5 4.97873363 5.2942921 3.91547313 4.93987193 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleAuthorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleAuthor.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleAuthor.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleAuthor.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(148, 183, 219)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(106, 136, 170)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.585938 12.023438 C 6.152344 12.023438 5.820312 11.96875 5.574219 11.863281 C 5.308594 11.746094 5.113281 11.550781 4.992188 11.285156 C 4.882812 11.035156 4.828125 10.660156 4.828125 10.136719 C 4.828125 9.453125 4.796875 9.226562 4.78125 9.152344 C 4.753906 9.03125 4.699219 8.925781 4.617188 8.824219 C 4.558594 8.75 4.40625 8.703125 4.191406 8.695312 L 4 8.6875 L 4 7.328125 L 4.199219 7.328125 C 4.414062 7.324219 4.566406 7.265625 4.667969 7.144531 C 4.714844 7.085938 4.828125 6.875 4.828125 6.152344 C 4.828125 5.691406 4.84375 5.355469 4.878906 5.128906 C 4.914062 4.875 5.007812 4.660156 5.152344 4.484375 C 5.296875 4.308594 5.484375 4.183594 5.710938 4.109375 C 5.925781 4.035156 6.210938 4 6.585938 4 L 6.984375 4 L 6.984375 5.367188 L 6.785156 5.367188 C 6.363281 5.367188 6.273438 5.417969 6.265625 5.425781 C 6.265625 5.425781 6.21875 5.488281 6.214844 5.742188 C 6.199219 6.386719 6.175781 6.804688 6.
152344 7 C 6.125 7.210938 6.0625 7.417969 5.964844 7.613281 C 5.894531 7.753906 5.789062 7.882812 5.644531 8.011719 C 5.78125 8.132812 5.890625 8.273438 5.96875 8.421875 C 6.085938 8.648438 6.152344 8.957031 6.171875 9.367188 L 6.226562 10.515625 C 6.234375 10.539062 6.257812 10.574219 6.300781 10.601562 C 6.308594 10.605469 6.394531 10.65625 6.78125 10.65625 L 6.980469 10.65625 L 6.980469 12.023438 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInheritedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInherited.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInherited.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInherited.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(224, 224, 224)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(178, 178, 178)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.585938 12.023438 C 6.152344 12.023438 5.820312 11.96875 5.574219 11.863281 C 5.308594 11.746094 5.113281 11.550781 4.992188 11.285156 C 4.882812 11.035156 4.828125 10.660156 4.828125 10.136719 C 4.828125 9.453125 4.796875 9.226562 4.78125 9.152344 C 4.753906 9.03125 4.699219 8.925781 4.617188 8.824219 C 4.558594 8.75 4.40625 8.703125 4.191406 8.695312 L 4 8.6875 L 4 7.328125 L 4.199219 7.328125 C 4.414062 7.324219 4.566406 7.265625 4.667969 7.144531 C 4.714844 7.085938 4.828125 6.875 4.828125 6.152344 C 4.828125 5.691406 4.84375 5.355469 4.878906 5.128906 C 4.914062 4.875 5.007812 4.660156 5.152344 4.484375 C 5.296875 4.308594 5.484375 4.183594 5.710938 4.109375 C 5.925781 4.035156 6.210938 4 6.585938 4 L 6.984375 4 L 6.984375 5.367188 L 6.785156 5.367188 C 6.363281 5.367188 6.273438 5.417969 6.265625 5.425781 C 6.265625 5.425781 6.21875 5.488281 6.214844 5.742188 C 6.199219 6.386719 6.175781 6.804688 6.
152344 7 C 6.125 7.210938 6.0625 7.417969 5.964844 7.613281 C 5.894531 7.753906 5.789062 7.882812 5.644531 8.011719 C 5.78125 8.132812 5.890625 8.273438 5.96875 8.421875 C 6.085938 8.648438 6.152344 8.957031 6.171875 9.367188 L 6.226562 10.515625 C 6.234375 10.539062 6.257812 10.574219 6.300781 10.601562 C 6.308594 10.605469 6.394531 10.65625 6.78125 10.65625 L 6.980469 10.65625 L 6.980469 12.023438 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInheritedElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInheritedElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInheritedElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInheritedElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(224, 224, 224)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(178, 178, 178)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(191, 191, 191)" d="M 5.503906 12.742188 C 4.949219 12.742188 4.503906 12.292969 4.503906 11.742188 L 4.503906 3.792969 C 4.503906 3.242188 4.949219 2.792969 5.503906 2.792969 L 10.472656 2.792969 C 11.023438 2.792969 11.472656 3.242188 11.472656 3.792969 L 11.472656 4.882812 C 11.472656 5.4375 11.023438 5.882812 10.472656 5.882812 C 10.472656 5.882812 9.132812 5.882812 8.15625 5.882812 C 8.15625 5.992188 8.15625 5.996094 8.15625 6.101562 C 8.957031 6.101562 9.875 6.101562 9.875 6.101562 C 10.425781 6.101562 10.875 6.550781 10.875 7.101562 L 10.875 8.164062 C 10.875 8.71875 10.425781 9.164062 9.875 9.164062 C 9.875 9.164062 8.957031 9.164062 8.15625 9.164062 C 8.15625 9.382812 8.15625 9.398438 8.15625 9.613281 C 9.191406 9.613281 10.722656 9.613281 10.722656 9.613281 C 11.277344 9.613281 11.722656 10.0625 11.722656 10.613281 L 11.722656 11.742188 C 11.722656 12.292969 11.277344 12.742188 10.722656 12.742188 L 5.503
906 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleInspectorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInspector.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInspector.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleInspector.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(165, 202, 164)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(118, 153, 116)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.585938 12.023438 C 6.152344 12.023438 5.820312 11.96875 5.574219 11.863281 C 5.308594 11.746094 5.113281 11.550781 4.992188 11.285156 C 4.882812 11.035156 4.828125 10.660156 4.828125 10.136719 C 4.828125 9.453125 4.796875 9.226562 4.78125 9.152344 C 4.753906 9.03125 4.699219 8.925781 4.617188 8.824219 C 4.558594 8.75 4.40625 8.703125 4.191406 8.695312 L 4 8.6875 L 4 7.328125 L 4.199219 7.328125 C 4.414062 7.324219 4.566406 7.265625 4.667969 7.144531 C 4.714844 7.085938 4.828125 6.875 4.828125 6.152344 C 4.828125 5.691406 4.84375 5.355469 4.878906 5.128906 C 4.914062 4.875 5.007812 4.660156 5.152344 4.484375 C 5.296875 4.308594 5.484375 4.183594 5.710938 4.109375 C 5.925781 4.035156 6.210938 4 6.585938 4 L 6.984375 4 L 6.984375 5.367188 L 6.785156 5.367188 C 6.363281 5.367188 6.273438 5.417969 6.265625 5.425781 C 6.265625 5.425781 6.21875 5.488281 6.214844 5.742188 C 6.199219 6.386719 6.175781 6.804688 6.
152344 7 C 6.125 7.210938 6.0625 7.417969 5.964844 7.613281 C 5.894531 7.753906 5.789062 7.882812 5.644531 8.011719 C 5.78125 8.132812 5.890625 8.273438 5.96875 8.421875 C 6.085938 8.648438 6.152344 8.957031 6.171875 9.367188 L 6.226562 10.515625 C 6.234375 10.539062 6.257812 10.574219 6.300781 10.601562 C 6.308594 10.605469 6.394531 10.65625 6.78125 10.65625 L 6.980469 10.65625 L 6.980469 12.023438 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleUsersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUser.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUser.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUser.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(246, 222, 146)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(204, 181, 108)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.585938 12.023438 C 6.152344 12.023438 5.820312 11.96875 5.574219 11.863281 C 5.308594 11.746094 5.113281 11.550781 4.992188 11.285156 C 4.882812 11.035156 4.828125 10.660156 4.828125 10.136719 C 4.828125 9.453125 4.796875 9.226562 4.78125 9.152344 C 4.753906 9.03125 4.699219 8.925781 4.617188 8.824219 C 4.558594 8.75 4.40625 8.703125 4.191406 8.695312 L 4 8.6875 L 4 7.328125 L 4.199219 7.328125 C 4.414062 7.324219 4.566406 7.265625 4.667969 7.144531 C 4.714844 7.085938 4.828125 6.875 4.828125 6.152344 C 4.828125 5.691406 4.84375 5.355469 4.878906 5.128906 C 4.914062 4.875 5.007812 4.660156 5.152344 4.484375 C 5.296875 4.308594 5.484375 4.183594 5.710938 4.109375 C 5.925781 4.035156 6.210938 4 6.585938 4 L 6.984375 4 L 6.984375 5.367188 L 6.785156 5.367188 C 6.363281 5.367188 6.273438 5.417969 6.265625 5.425781 C 6.265625 5.425781 6.21875 5.488281 6.214844 5.742188 C 6.199219 6.386719 6.175781 6.804688 6.
152344 7 C 6.125 7.210938 6.0625 7.417969 5.964844 7.613281 C 5.894531 7.753906 5.789062 7.882812 5.644531 8.011719 C 5.78125 8.132812 5.890625 8.273438 5.96875 8.421875 C 6.085938 8.648438 6.152344 8.957031 6.171875 9.367188 L 6.226562 10.515625 C 6.234375 10.539062 6.257812 10.574219 6.300781 10.601562 C 6.308594 10.605469 6.394531 10.65625 6.78125 10.65625 L 6.980469 10.65625 L 6.980469 12.023438 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesStyleRuleUserAgentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUserAgent.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUserAgent.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/StyleRuleUserAgent.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="white" d="M 6.585938 12.023438 C 6.152344 12.023438 5.820312 11.96875 5.574219 11.863281 C 5.308594 11.746094 5.113281 11.550781 4.992188 11.285156 C 4.882812 11.035156 4.828125 10.660156 4.828125 10.136719 C 4.828125 9.453125 4.796875 9.226562 4.78125 9.152344 C 4.753906 9.03125 4.699219 8.925781 4.617188 8.824219 C 4.558594 8.75 4.40625 8.703125 4.191406 8.695312 L 4 8.6875 L 4 7.328125 L 4.199219 7.328125 C 4.414062 7.324219 4.566406 7.265625 4.667969 7.144531 C 4.714844 7.085938 4.828125 6.875 4.828125 6.152344 C 4.828125 5.691406 4.84375 5.355469 4.878906 5.128906 C 4.914062 4.875 5.007812 4.660156 5.152344 4.484375 C 5.296875 4.308594 5.484375 4.183594 5.710938 4.109375 C 5.925781 4.035156 6.210938 4 6.585938 4 L 6.984375 4 L 6.984375 5.367188 L 6.785156 5.367188 C 6.363281 5.367188 6.273438 5.417969 6.265625 5.425781 C 6.265625 5.425781 6.21875 5.488281 6.214844 5.742188 C 6.199219 6.386719 6.175781 6.804688 6.
152344 7 C 6.125 7.210938 6.0625 7.417969 5.964844 7.613281 C 5.894531 7.753906 5.789062 7.882812 5.644531 8.011719 C 5.78125 8.132812 5.890625 8.273438 5.96875 8.421875 C 6.085938 8.648438 6.152344 8.957031 6.171875 9.367188 L 6.226562 10.515625 C 6.234375 10.539062 6.257812 10.574219 6.300781 10.601562 C 6.308594 10.605469 6.394531 10.65625 6.78125 10.65625 L 6.980469 10.65625 L 6.980469 12.023438 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextAlignCentersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignCenter.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignCenter.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignCenter.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <line class="stroked" x1="0.5" y1="3" x2="14.5" y2="3" />
- <line class="stroked" x1="3" y1="5.5" x2="12" y2="5.5" />
- <line class="stroked" x1="0.5" y1="8" x2="14.5" y2="8" />
- <line class="stroked" x1="3" y1="10.5" x2="12" y2="10.5" />
- <line class="stroked" x1="0.5" y1="13" x2="14.5" y2="13" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <line stroke="currentColor" x1="0.5" y1="3" x2="14.5" y2="3"/>
+ <line stroke="currentColor" x1="3" y1="5.5" x2="12" y2="5.5"/>
+ <line stroke="currentColor" x1="0.5" y1="8" x2="14.5" y2="8"/>
+ <line stroke="currentColor" x1="3" y1="10.5" x2="12" y2="10.5"/>
+ <line stroke="currentColor" x1="0.5" y1="13" x2="14.5" y2="13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextAlignJustifysvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignJustify.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignJustify.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignJustify.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <line class="stroked" x1="0.5" y1="3" x2="14.5" y2="3" />
- <line class="stroked" x1="0.5" y1="5.5" x2="14.5" y2="5.5" />
- <line class="stroked" x1="0.5" y1="8" x2="14.5" y2="8" />
- <line class="stroked" x1="0.5" y1="10.5" x2="14.5" y2="10.5" />
- <line class="stroked" x1="0.5" y1="13" x2="14.5" y2="13" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <line stroke="currentColor" x1="0.5" y1="3" x2="14.5" y2="3"/>
+ <line stroke="currentColor" x1="0.5" y1="5.5" x2="14.5" y2="5.5"/>
+ <line stroke="currentColor" x1="0.5" y1="8" x2="14.5" y2="8"/>
+ <line stroke="currentColor" x1="0.5" y1="10.5" x2="14.5" y2="10.5"/>
+ <line stroke="currentColor" x1="0.5" y1="13" x2="14.5" y2="13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextAlignLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <line class="stroked" x1="0.5" y1="3" x2="14.5" y2="3" />
- <line class="stroked" x1="0.5" y1="5.5" x2="9.5" y2="5.5" />
- <line class="stroked" x1="0.5" y1="8" x2="14.5" y2="8" />
- <line class="stroked" x1="0.5" y1="10.5" x2="9.5" y2="10.5" />
- <line class="stroked" x1="0.5" y1="13" x2="14.5" y2="13" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <line stroke="currentColor" x1="0.5" y1="3" x2="14.5" y2="3"/>
+ <line stroke="currentColor" x1="0.5" y1="5.5" x2="9.5" y2="5.5"/>
+ <line stroke="currentColor" x1="0.5" y1="8" x2="14.5" y2="8"/>
+ <line stroke="currentColor" x1="0.5" y1="10.5" x2="9.5" y2="10.5"/>
+ <line stroke="currentColor" x1="0.5" y1="13" x2="14.5" y2="13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextAlignRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextAlignRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="black">
- <line class="stroked" x1="0.5" y1="3" x2="14.5" y2="3" />
- <line class="stroked" x1="5.5" y1="5.5" x2="14.5" y2="5.5" />
- <line class="stroked" x1="0.5" y1="8" x2="14.5" y2="8" />
- <line class="stroked" x1="5.5" y1="10.5" x2="14.5" y2="10.5" />
- <line class="stroked" x1="0.5" y1="13" x2="14.5" y2="13" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <line stroke="currentColor" x1="0.5" y1="3" x2="14.5" y2="3"/>
+ <line stroke="currentColor" x1="5.5" y1="5.5" x2="14.5" y2="5.5"/>
+ <line stroke="currentColor" x1="0.5" y1="8" x2="14.5" y2="8"/>
+ <line stroke="currentColor" x1="5.5" y1="10.5" x2="14.5" y2="10.5"/>
+ <line stroke="currentColor" x1="0.5" y1="13" x2="14.5" y2="13"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationLineThroughsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationLineThrough.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationLineThrough.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationLineThrough.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="0" y="11.5">Abc</text>
- <line class="stroked" x1="0" y1="8.5" x2="15.5" y2="8.5" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.99902344 8.35449219 L3.01904297 5.50244141 L1.97753906 8.35449219 L3.99902344 8.35449219 Z M 2.56201172 4.54443359 L3.55078125 4.54443359 L5.89306641 11 L4.93505859 11 L4.28027344 9.06640625 L1.72705078 9.06640625 L1.02832031 11 L0.131835938 11 L2.56201172 4.54443359 Z M 6.85148439 4.52246094 L7.62052736 4.52246094 L7.62052736 6.86474609 C 7.79337978 6.63915903 7.99992069 6.46704161 8.24015626 6.34838867 C 8.48039184 6.22973573 8.74113142 6.17041016 9.02238283 6.17041016 C 9.60832326 6.17041016 10.0836603 6.37182416 10.4484082 6.7746582 C 10.8131561 7.17749225 10.9955274 7.77148045 10.9955274 8.55664062 C 10.9955274 9.30078497 10.8153534 9.91894285 10.455 10.4111328 C 10.0946466 10.9033228 9.59513993 11.1494141 8.95646486 11.1494141 C 8.59904119 11.1494141 8.2972864 11.0629891 8.05119142 10.8901367 C 7.90470631 10.7875971 7.7479696 10.6235363 7.58097658 10.3979492 L7.58097658 11 L6.85148439 11 L6.85148439 4.52246094 Z M
9.86833009 9.94091797 C 10.0807335 9.60107252 10.1869336 9.15283481 10.1869336 8.59619141 C 10.1869336 8.10107174 10.0807335 7.69091959 9.86833009 7.36572266 C 9.65592669 7.04052572 9.34318567 6.87792969 8.93009767 6.87792969 C 8.56974431 6.87792969 8.25407363 7.01122914 7.98307618 7.27783203 C 7.71207874 7.54443493 7.57658204 7.98388366 7.57658204 8.59619141 C 7.57658204 9.03857643 7.63224555 9.39745956 7.74357423 9.67285156 C 7.95158308 10.1914088 8.3397628 10.4506836 8.90812501 10.4506836 C 9.33586153 10.4506836 9.65592669 10.2807634 9.86833009 9.94091797 L9.86833009 9.94091797 Z M 15.3575098 6.54394531 C 15.690031 6.8017591 15.8899802 7.24560232 15.9573633 7.87548828 L15.1883203 7.87548828 C 15.1414451 7.58544777 15.0345126 7.34448338 14.8675196 7.15258789 C 14.7005265 6.9606924 14.4324628 6.86474609 14.0633203 6.86474609 C 13.5594116 6.86474609 13.1990636 7.11083738 12.9822657 7.60302734 C 12.8416399 7.92236488 12.7713282 8.31640391 12.7713282 8.78515625 C 12.7713282 9.
2568383 12.8709365 9.65380698 13.0701563 9.97607422 C 13.269376 10.2983415 13.5828495 10.4594727 14.010586 10.4594727 C 14.3387126 10.4594727 14.5987198 10.3591319 14.7906153 10.1584473 C 14.9825108 9.95776267 15.1150778 9.68310721 15.1883203 9.33447266 L15.9573633 9.33447266 C 15.8694722 9.95849921 15.6497479 10.4147935 15.2981836 10.7033691 C 14.9466194 10.9919448 14.4969168 11.1362305 13.9490625 11.1362305 C 13.3338251 11.1362305 12.8431073 10.9113792 12.4768946 10.4616699 C 12.1106818 10.0119606 11.9275782 9.45019868 11.9275782 8.77636719 C 11.9275782 7.95019118 12.1282597 7.30713121 12.5296289 6.84716797 C 12.9309981 6.38720473 13.4422235 6.15722656 14.0633203 6.15722656 C 14.5935964 6.15722656 15.0249886 6.28613152 15.3575098 6.54394531 L15.3575098 6.54394531 Z"/>
+ <line stroke="currentColor" x1="0" y1="8.5" x2="16" y2="8.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationOverlinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationOverline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationOverline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationOverline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="0" y="11.5">Abc</text>
- <line class="stroked" x1="0" y1="3.5" x2="15.5" y2="3.5" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.99902344 8.35449219 L3.01904297 5.50244141 L1.97753906 8.35449219 L3.99902344 8.35449219 Z M 2.56201172 4.54443359 L3.55078125 4.54443359 L5.89306641 11 L4.93505859 11 L4.28027344 9.06640625 L1.72705078 9.06640625 L1.02832031 11 L0.131835938 11 L2.56201172 4.54443359 Z M 6.85148439 4.52246094 L7.62052736 4.52246094 L7.62052736 6.86474609 C 7.79337978 6.63915903 7.99992069 6.46704161 8.24015626 6.34838867 C 8.48039184 6.22973573 8.74113142 6.17041016 9.02238283 6.17041016 C 9.60832326 6.17041016 10.0836603 6.37182416 10.4484082 6.7746582 C 10.8131561 7.17749225 10.9955274 7.77148045 10.9955274 8.55664062 C 10.9955274 9.30078497 10.8153534 9.91894285 10.455 10.4111328 C 10.0946466 10.9033228 9.59513993 11.1494141 8.95646486 11.1494141 C 8.59904119 11.1494141 8.2972864 11.0629891 8.05119142 10.8901367 C 7.90470631 10.7875971 7.7479696 10.6235363 7.58097658 10.3979492 L7.58097658 11 L6.85148439 11 L6.85148439 4.52246094 Z M
9.86833009 9.94091797 C 10.0807335 9.60107252 10.1869336 9.15283481 10.1869336 8.59619141 C 10.1869336 8.10107174 10.0807335 7.69091959 9.86833009 7.36572266 C 9.65592669 7.04052572 9.34318567 6.87792969 8.93009767 6.87792969 C 8.56974431 6.87792969 8.25407363 7.01122914 7.98307618 7.27783203 C 7.71207874 7.54443493 7.57658204 7.98388366 7.57658204 8.59619141 C 7.57658204 9.03857643 7.63224555 9.39745956 7.74357423 9.67285156 C 7.95158308 10.1914088 8.3397628 10.4506836 8.90812501 10.4506836 C 9.33586153 10.4506836 9.65592669 10.2807634 9.86833009 9.94091797 L9.86833009 9.94091797 Z M 15.3575098 6.54394531 C 15.690031 6.8017591 15.8899802 7.24560232 15.9573633 7.87548828 L15.1883203 7.87548828 C 15.1414451 7.58544777 15.0345126 7.34448338 14.8675196 7.15258789 C 14.7005265 6.9606924 14.4324628 6.86474609 14.0633203 6.86474609 C 13.5594116 6.86474609 13.1990636 7.11083738 12.9822657 7.60302734 C 12.8416399 7.92236488 12.7713282 8.31640391 12.7713282 8.78515625 C 12.7713282 9.
2568383 12.8709365 9.65380698 13.0701563 9.97607422 C 13.269376 10.2983415 13.5828495 10.4594727 14.010586 10.4594727 C 14.3387126 10.4594727 14.5987198 10.3591319 14.7906153 10.1584473 C 14.9825108 9.95776267 15.1150778 9.68310721 15.1883203 9.33447266 L15.9573633 9.33447266 C 15.8694722 9.95849921 15.6497479 10.4147935 15.2981836 10.7033691 C 14.9466194 10.9919448 14.4969168 11.1362305 13.9490625 11.1362305 C 13.3338251 11.1362305 12.8431073 10.9113792 12.4768946 10.4616699 C 12.1106818 10.0119606 11.9275782 9.45019868 11.9275782 8.77636719 C 11.9275782 7.95019118 12.1282597 7.30713121 12.5296289 6.84716797 C 12.9309981 6.38720473 13.4422235 6.15722656 14.0633203 6.15722656 C 14.5935964 6.15722656 15.0249886 6.28613152 15.3575098 6.54394531 L15.3575098 6.54394531 Z"/>
+ <line stroke="currentColor" x1="0" y1="3.5" x2="16" y2="3.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextDecorationUnderlinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationUnderline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationUnderline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextDecorationUnderline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="0" y="11.5">Abc</text>
- <line class="stroked" x1="0" y1="12.5" x2="15.5" y2="12.5" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.99902344 8.35449219 L3.01904297 5.50244141 L1.97753906 8.35449219 L3.99902344 8.35449219 Z M 2.56201172 4.54443359 L3.55078125 4.54443359 L5.89306641 11 L4.93505859 11 L4.28027344 9.06640625 L1.72705078 9.06640625 L1.02832031 11 L0.131835938 11 L2.56201172 4.54443359 Z M 6.85148439 4.52246094 L7.62052736 4.52246094 L7.62052736 6.86474609 C 7.79337978 6.63915903 7.99992069 6.46704161 8.24015626 6.34838867 C 8.48039184 6.22973573 8.74113142 6.17041016 9.02238283 6.17041016 C 9.60832326 6.17041016 10.0836603 6.37182416 10.4484082 6.7746582 C 10.8131561 7.17749225 10.9955274 7.77148045 10.9955274 8.55664062 C 10.9955274 9.30078497 10.8153534 9.91894285 10.455 10.4111328 C 10.0946466 10.9033228 9.59513993 11.1494141 8.95646486 11.1494141 C 8.59904119 11.1494141 8.2972864 11.0629891 8.05119142 10.8901367 C 7.90470631 10.7875971 7.7479696 10.6235363 7.58097658 10.3979492 L7.58097658 11 L6.85148439 11 L6.85148439 4.52246094 Z M
9.86833009 9.94091797 C 10.0807335 9.60107252 10.1869336 9.15283481 10.1869336 8.59619141 C 10.1869336 8.10107174 10.0807335 7.69091959 9.86833009 7.36572266 C 9.65592669 7.04052572 9.34318567 6.87792969 8.93009767 6.87792969 C 8.56974431 6.87792969 8.25407363 7.01122914 7.98307618 7.27783203 C 7.71207874 7.54443493 7.57658204 7.98388366 7.57658204 8.59619141 C 7.57658204 9.03857643 7.63224555 9.39745956 7.74357423 9.67285156 C 7.95158308 10.1914088 8.3397628 10.4506836 8.90812501 10.4506836 C 9.33586153 10.4506836 9.65592669 10.2807634 9.86833009 9.94091797 L9.86833009 9.94091797 Z M 15.3575098 6.54394531 C 15.690031 6.8017591 15.8899802 7.24560232 15.9573633 7.87548828 L15.1883203 7.87548828 C 15.1414451 7.58544777 15.0345126 7.34448338 14.8675196 7.15258789 C 14.7005265 6.9606924 14.4324628 6.86474609 14.0633203 6.86474609 C 13.5594116 6.86474609 13.1990636 7.11083738 12.9822657 7.60302734 C 12.8416399 7.92236488 12.7713282 8.31640391 12.7713282 8.78515625 C 12.7713282 9.
2568383 12.8709365 9.65380698 13.0701563 9.97607422 C 13.269376 10.2983415 13.5828495 10.4594727 14.010586 10.4594727 C 14.3387126 10.4594727 14.5987198 10.3591319 14.7906153 10.1584473 C 14.9825108 9.95776267 15.1150778 9.68310721 15.1883203 9.33447266 L15.9573633 9.33447266 C 15.8694722 9.95849921 15.6497479 10.4147935 15.2981836 10.7033691 C 14.9466194 10.9919448 14.4969168 11.1362305 13.9490625 11.1362305 C 13.3338251 11.1362305 12.8431073 10.9113792 12.4768946 10.4616699 C 12.1106818 10.0119606 11.9275782 9.45019868 11.9275782 8.77636719 C 11.9275782 7.95019118 12.1282597 7.30713121 12.5296289 6.84716797 C 12.9309981 6.38720473 13.4422235 6.15722656 14.0633203 6.15722656 C 14.5935964 6.15722656 15.0249886 6.28613152 15.3575098 6.54394531 L15.3575098 6.54394531 Z"/>
+ <line stroke="currentColor" x1="0" y1="12.5" x2="16" y2="12.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextTransformCapitalizesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformCapitalize.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformCapitalize.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformCapitalize.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="0" y="11.5">Abc</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.99902344 8.35449219 L3.01904297 5.50244141 L1.97753906 8.35449219 L3.99902344 8.35449219 Z M 2.56201172 4.54443359 L3.55078125 4.54443359 L5.89306641 11 L4.93505859 11 L4.28027344 9.06640625 L1.72705078 9.06640625 L1.02832031 11 L0.131835938 11 L2.56201172 4.54443359 Z M 6.85148439 4.52246094 L7.62052736 4.52246094 L7.62052736 6.86474609 C 7.79337978 6.63915903 7.99992069 6.46704161 8.24015626 6.34838867 C 8.48039184 6.22973573 8.74113142 6.17041016 9.02238283 6.17041016 C 9.60832326 6.17041016 10.0836603 6.37182416 10.4484082 6.7746582 C 10.8131561 7.17749225 10.9955274 7.77148045 10.9955274 8.55664062 C 10.9955274 9.30078497 10.8153534 9.91894285 10.455 10.4111328 C 10.0946466 10.9033228 9.59513993 11.1494141 8.95646486 11.1494141 C 8.59904119 11.1494141 8.2972864 11.0629891 8.05119142 10.8901367 C 7.90470631 10.7875971 7.7479696 10.6235363 7.58097658 10.3979492 L7.58097658 11 L6.85148439 11 L6.85148439 4.52246094 Z M
9.86833009 9.94091797 C 10.0807335 9.60107252 10.1869336 9.15283481 10.1869336 8.59619141 C 10.1869336 8.10107174 10.0807335 7.69091959 9.86833009 7.36572266 C 9.65592669 7.04052572 9.34318567 6.87792969 8.93009767 6.87792969 C 8.56974431 6.87792969 8.25407363 7.01122914 7.98307618 7.27783203 C 7.71207874 7.54443493 7.57658204 7.98388366 7.57658204 8.59619141 C 7.57658204 9.03857643 7.63224555 9.39745956 7.74357423 9.67285156 C 7.95158308 10.1914088 8.3397628 10.4506836 8.90812501 10.4506836 C 9.33586153 10.4506836 9.65592669 10.2807634 9.86833009 9.94091797 L9.86833009 9.94091797 Z M 15.3575098 6.54394531 C 15.690031 6.8017591 15.8899802 7.24560232 15.9573633 7.87548828 L15.1883203 7.87548828 C 15.1414451 7.58544777 15.0345126 7.34448338 14.8675196 7.15258789 C 14.7005265 6.9606924 14.4324628 6.86474609 14.0633203 6.86474609 C 13.5594116 6.86474609 13.1990636 7.11083738 12.9822657 7.60302734 C 12.8416399 7.92236488 12.7713282 8.31640391 12.7713282 8.78515625 C 12.7713282 9.
2568383 12.8709365 9.65380698 13.0701563 9.97607422 C 13.269376 10.2983415 13.5828495 10.4594727 14.010586 10.4594727 C 14.3387126 10.4594727 14.5987198 10.3591319 14.7906153 10.1584473 C 14.9825108 9.95776267 15.1150778 9.68310721 15.1883203 9.33447266 L15.9573633 9.33447266 C 15.8694722 9.95849921 15.6497479 10.4147935 15.2981836 10.7033691 C 14.9466194 10.9919448 14.4969168 11.1362305 13.9490625 11.1362305 C 13.3338251 11.1362305 12.8431073 10.9113792 12.4768946 10.4616699 C 12.1106818 10.0119606 11.9275782 9.45019868 11.9275782 8.77636719 C 11.9275782 7.95019118 12.1282597 7.30713121 12.5296289 6.84716797 C 12.9309981 6.38720473 13.4422235 6.15722656 14.0633203 6.15722656 C 14.5935964 6.15722656 15.0249886 6.28613152 15.3575098 6.54394531 L15.3575098 6.54394531 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextTransformLowercasesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformLowercase.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformLowercase.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformLowercase.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="0.5" y="11.5">abc</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 2.13749999 10.2880859 C 2.30449301 10.4199225 2.50224494 10.4858398 2.73076171 10.4858398 C 3.00908341 10.4858398 3.27861197 10.4213874 3.53935546 10.2924805 C 3.97881078 10.0786122 4.19853514 9.72851806 4.19853514 9.2421875 L 4.19853514 8.60498047 C 4.10185497 8.66650421 3.9773445 8.71777323 3.82499999 8.75878906 C 3.67265548 8.79980489 3.52324291 8.82910147 3.3767578 8.84667969 L 2.89775389 8.90820312 C 2.61064308 8.94628925 2.39531321 9.00634725 2.2517578 9.08837891 C 2.00859252 9.22607491 1.88701171 9.44579927 1.88701171 9.74755859 C 1.88701171 9.97607536 1.97050697 10.1562493 2.13749999 10.2880859 L 2.13749999 10.2880859 Z M 3.80302733 8.14794922 C 3.98466887 8.1245116 4.10624968 8.04834049 4.16777343 7.91943359 C 4.20292985 7.84912074 4.2205078 7.74804753 4.2205078 7.61621094 C 4.2205078 7.34667834 4.12456149 7.15112365 3.932666 7.02954102 C 3.74077051 6.90795838 3.46611506 6.84716797 3.10869139 6.84716797 C 2.695603
39 6.84716797 2.40263757 6.95849498 2.22978514 7.18115234 C 2.13310497 7.30419983 2.07011732 7.48730347 2.0408203 7.73046875 L 1.30253905 7.73046875 C 1.31718756 7.15038772 1.5054181 6.74682731 1.86723632 6.51977539 C 2.22905453 6.29272347 2.64872807 6.17919922 3.12626952 6.17919922 C 3.67998323 6.17919922 4.12968576 6.28466691 4.47539061 6.49560547 C 4.81816576 6.70654402 4.98955077 7.03466574 4.98955077 7.47998047 L 4.98955077 10.1914062 C 4.98955077 10.2734379 5.0063963 10.3393552 5.04008788 10.3891602 C 5.07377945 10.4389651 5.14482366 10.4638672 5.25322264 10.4638672 C 5.28837907 10.4638672 5.32792946 10.4616699 5.37187499 10.4572754 C 5.41582052 10.4528808 5.46269505 10.4462891 5.51249999 10.4375 L 5.51249999 11.0219727 C 5.3894525 11.0571291 5.29570344 11.0791015 5.23124999 11.0878906 C 5.16679654 11.0966797 5.07890679 11.1010742 4.96757811 11.1010742 C 4.69511581 11.1010742 4.49736388 11.0043955 4.37431639 10.8110352 C 4.30986295 10.7084956 4.26445324 10.5634775 4.23
808593 10.3759766 C 4.07695231 10.5869151 3.84550931 10.7700188 3.54374999 10.925293 C 3.24199067 11.0805672 2.90947446 11.1582031 2.54619139 11.1582031 C 2.10966577 11.1582031 1.75297989 11.0256361 1.47612303 10.760498 C 1.19926618 10.49536 1.06083983 10.1635762 1.06083983 9.76513672 C 1.06083983 9.3286111 1.19706894 8.99023558 1.46953124 8.75 C 1.74199354 8.50976442 2.09941184 8.36181668 2.54179686 8.30615234 L 3.80302733 8.14794922 Z M 6.22441405 4.52246094 L 6.99345702 4.52246094 L 6.99345702 6.86474609 C 7.16630945 6.63915903 7.37285035 6.46704161 7.61308593 6.34838867 C 7.8533215 6.22973573 8.11406108 6.17041016 8.39531249 6.17041016 C 8.98125292 6.17041016 9.45658996 6.37182416 9.82133788 6.7746582 C 10.1860858 7.17749225 10.368457 7.77148045 10.368457 8.55664062 C 10.368457 9.30078497 10.188283 9.91894285 9.82792968 10.4111328 C 9.46757631 10.9033228 8.96806959 11.1494141 8.32939452 11.1494141 C 7.97197086 11.1494141 7.67021606 11.0629891 7.42412108 10.8901367 C 7.27
763597 10.7875971 7.12089926 10.6235363 6.95390624 10.3979492 L 6.95390624 11 L 6.22441405 11 L 6.22441405 4.52246094 Z M 9.24125975 9.94091797 C 9.45366316 9.60107252 9.55986327 9.15283481 9.55986327 8.59619141 C 9.55986327 8.10107174 9.45366316 7.69091959 9.24125975 7.36572266 C 9.02885635 7.04052572 8.71611533 6.87792969 8.30302733 6.87792969 C 7.94267397 6.87792969 7.6270033 7.01122914 7.35600585 7.27783203 C 7.0850084 7.54443493 6.94951171 7.98388366 6.94951171 8.59619141 C 6.94951171 9.03857643 7.00517521 9.39745956 7.11650389 9.67285156 C 7.32451275 10.1914088 7.71269246 10.4506836 8.28105468 10.4506836 C 8.70879119 10.4506836 9.02885635 10.2807634 9.24125975 9.94091797 L 9.24125975 9.94091797 Z M 14.4004394 6.54394531 C 14.7329606 6.8017591 14.9329098 7.24560232 15.000293 7.87548828 L 14.23125 7.87548828 C 14.1843748 7.58544777 14.0774422 7.34448338 13.9104492 7.15258789 C 13.7434562 6.9606924 13.4753925 6.86474609 13.10625 6.86474609 C 12.6023412 6.86474609 12.24199
33 7.11083738 12.0251953 7.60302734 C 11.8845696 7.92236488 11.8142578 8.31640391 11.8142578 8.78515625 C 11.8142578 9.2568383 11.9138662 9.65380698 12.1130859 9.97607422 C 12.3123057 10.2983415 12.6257791 10.4594727 13.0535156 10.4594727 C 13.3816423 10.4594727 13.6416494 10.3591319 13.8335449 10.1584473 C 14.0254404 9.95776267 14.1580074 9.68310721 14.23125 9.33447266 L 15.000293 9.33447266 C 14.9124019 9.95849921 14.6926775 10.4147935 14.3411133 10.7033691 C 13.989549 10.9919448 13.5398465 11.1362305 12.9919922 11.1362305 C 12.3767547 11.1362305 11.886037 10.9113792 11.5198242 10.4616699 C 11.1536114 10.0119606 10.9705078 9.45019868 10.9705078 8.77636719 C 10.9705078 7.95019118 11.1711894 7.30713121 11.5725586 6.84716797 C 11.9739278 6.38720473 12.4851531 6.15722656 13.10625 6.15722656 C 13.6365261 6.15722656 14.0679182 6.28613152 14.4004394 6.54394531 L 14.4004394 6.54394531 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTextTransformUppercasesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformUppercase.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformUppercase.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TextTransformUppercase.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" font-size="9" font-family="-apple-system, sans-serif">
- <text class="filled" x="-1" y="11.5">ABC</text>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 3.77685547 8.30146484 L 2.85131836 5.60786133 L 1.86767578 8.30146484 L 3.77685547 8.30146484 Z M 2.41967773 4.70307617 L 3.35351562 4.70307617 L 5.56567383 10.8 L 4.66088867 10.8 L 4.04248047 8.97382813 L 1.63110352 8.97382813 L 0.971191406 10.8 L 0.124511719 10.8 L 2.41967773 4.70307617 Z M 8.05791016 7.28046875 C 8.40654471 7.28046875 8.67770085 7.23204801 8.87138672 7.13520508 C 9.17575022 6.98302333 9.32792969 6.70910029 9.32792969 6.31342773 C 9.32792969 5.91498824 9.16606607 5.646599 8.84233398 5.50825195 C 8.65971588 5.43077761 8.38855974 5.39204102 8.02885742 5.39204102 L 6.55546875 5.39204102 L 6.55546875 7.28046875 L 8.05791016 7.28046875 Z M 8.33598633 10.0944336 C 8.84233652 10.0944336 9.20341689 9.94778792 9.41923828 9.65449219 C 9.55481839 9.46910715 9.62260742 9.24498829 9.62260742 8.98212891 C 9.62260742 8.53941836 9.42477411 8.23782632 9.02910156 8.07734375 C 8.81881405 7.99156858 8.54074066 7.94868164 8.
19487305 7.94868164 L 6.55546875 7.94868164 L 6.55546875 10.0944336 L 8.33598633 10.0944336 Z M 5.74614258 4.70307617 L 8.36503906 4.70307617 C 9.07890982 4.70307617 9.58663586 4.91612743 9.88823242 5.34223633 C 10.0653166 5.59402795 10.1538574 5.88455239 10.1538574 6.21381836 C 10.1538574 6.59842315 10.0445649 6.91384968 9.82597656 7.16010742 C 9.71253198 7.29015365 9.54928492 7.40913032 9.33623047 7.51704102 C 9.64889479 7.63601948 9.88269779 7.7702141 10.0376465 7.91962891 C 10.3115736 8.18525523 10.4485352 8.55186941 10.4485352 9.01948242 C 10.4485352 9.41238803 10.3254081 9.76793461 10.0791504 10.0861328 C 9.71114725 10.5620467 9.12594802 10.8 8.32353516 10.8 L 5.74614258 10.8 L 5.74614258 4.70307617 Z M 15.2525391 5.14716797 C 15.678648 5.55390828 15.9152179 6.01598049 15.9622559 6.53339844 L 15.1570801 6.53339844 C 15.065771 6.14049283 14.8838474 5.82921664 14.6113037 5.59956055 C 14.33876 5.36990445 13.9562362 5.25507813 13.4637207 5.25507813 C 12.8632945 5.25507813
12.3783954 5.46605421 12.0090088 5.8880127 C 11.6396222 6.30997119 11.4549316 6.95673392 11.4549316 7.82832031 C 11.4549316 8.54219107 11.6216373 9.12116477 11.9550537 9.56525879 C 12.2884701 10.0093528 12.7858203 10.2313965 13.4471191 10.2313965 C 14.0558461 10.2313965 14.5193018 9.99759348 14.8375 9.52998047 C 15.0062834 9.28372273 15.1321773 8.9599955 15.2151855 8.55878906 L 16.0203613 8.55878906 C 15.9484209 9.20071936 15.7104675 9.73888129 15.3064941 10.173291 C 14.8222795 10.6962428 14.1692912 10.9577148 13.3475098 10.9577148 C 12.6391729 10.9577148 12.0442895 10.7432801 11.5628418 10.3144043 C 10.9292123 9.74718141 10.6124023 8.87145774 10.6124023 7.68720703 C 10.6124023 6.78795123 10.8503557 6.05057254 11.3262695 5.47504883 C 11.8409205 4.84972018 12.5506302 4.53706055 13.4554199 4.53706055 C 14.2273964 4.53706055 14.8264302 4.74042765 15.2525391 5.14716797 L 15.2525391 5.14716797 Z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Time.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Time.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Time.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <circle fill="none" stroke="black" cx="8.5" cy="8.5" r="6.5"/>
- <path fill="none" stroke="black" d="M 8.5 3.5 L 8.5 8.5 L 10.5 10.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <circle fill="none" stroke="currentColor" cx="8.5" cy="8.5" r="6.5"/>
+ <path fill="none" stroke="currentColor" d="M 8.5 3.5 L 8.5 8.5 L 10.5 10.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Timeline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Timeline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Timeline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <circle cx="8" cy="8" r="7.5" class="stroked" fill="none" stroke="black"/>
- <path d="M 8.5 3 L 8.5 8.5 L 5 8.5" class="stroked" fill="none" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <circle fill="none" stroke="currentColor" cx="8" cy="8" r="7.5"/>
+ <path fill="none" stroke="currentColor" d="M 8.5 3 L 8.5 8.5 L 5 8.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordAnimationsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordAnimation.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordAnimation.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordAnimation.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 L 3 1 Z M 3 1"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 2.61147641 12.75 L 5.96029528 12.75 L 6.8114662 10.628418 L 8.70346974 10.628418 L 9.53482191 12.75 L 13.3777814 12.75 L 9.50565303 2.80078125 L 6.48360478 2.80078125 L 2.61147641 12.75 Z M 2.61147641 12.75"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordCompositesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordComposite.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordComposite.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordComposite.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(176, 204, 105)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(152, 188, 77)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(152, 188, 77)" d="M 4.773438 11.542969 C 3.855469 10.621094 3.390625 9.347656 3.390625 7.769531 C 3.390625 6.15625 3.863281 4.878906 4.789062 3.964844 C 5.710938 3.054688 7.003906 2.59375 8.625 2.59375 C 9.570312 2.59375 10.519531 2.707031 11.441406 2.929688 C 11.890625 3.035156 12.210938 3.4375 12.210938 3.902344 L 12.210938 5.195312 C 12.210938 5.519531 12.050781 5.824219 11.789062 6.011719 C 11.613281 6.132812 11.410156 6.195312 11.207031 6.195312 C 11.097656 6.195312 10.984375 6.179688 10.878906 6.140625 C 10.015625 5.835938 9.308594 5.683594 8.769531 5.683594 C 8.058594 5.683594 7.753906 5.941406 7.589844 6.132812 C 7.296875 6.476562 7.148438 7.019531 7.148438 7.746094 C 7.148438 8.445312 7.308594 8.972656 7.621094 9.320312 C 7.808594 9.523438 8.148438 9.796875 8.921875 9.796875 C 9.542969 9.796875 10.1875 9.632812 10.839844 9.308594 C 10.980469 9.242188 11.132812 9.207031 11.285156 9.207031 C 11.46875 9.2070
31 11.648438 9.257812 11.8125 9.359375 C 12.105469 9.539062 12.285156 9.859375 12.285156 10.207031 L 12.285156 11.425781 C 12.285156 11.820312 12.050781 12.179688 11.691406 12.339844 C 10.792969 12.738281 9.730469 12.941406 8.527344 12.941406 C 6.957031 12.941406 5.691406 12.472656 4.773438 11.542969"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordConsoleProfilesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordConsoleProfile.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordConsoleProfile.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordConsoleProfile.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 7.09187665 9.86486483 L 8.09187665 9.86486483 L 8.09187675 12 L 8.09187675 13 L 7.09187675 13 L 5.4 13 L 4.4 13 L 4.4 12 L 4.4 4 L 4.4 3 L 5.4 3 L 8.2907563 3 C 9.49663194 3 10.4135483 3.20769232 11.0534889 3.69149996 C 11.7636984 4.22843229 12.097479 5.0719049 12.097479 6.12432432 C 12.097479 7.27475638 11.6870881 8.23200847 10.8722916 8.91131913 C 10.0975424 9.55724163 9.06464428 9.86486486 7.80896359 9.86486486 L 7.09187675 9.86486486 L 7.09187675 9.36486486 L 7.09187675 8.86486486 L 7.80896359 8.86486486 C 8.11369101 8.86486486 8.39855198 8.84414571 8.66354709 8.80270722 C 9.30146061 8.70295376 9.82425299 8.48313329 10.2319328 8.14324324 C 10.8089665 7.66215976 11.097479 6.98919351 11.097479 6.12432432 C 11.097479 5.36035654 10.8817949 4.81531695 10.4504202 4.48918919 C 10.0190455 4.16306143 9.29916471 4 8.2907563 4 L 5.4 4 L 5.4 12 L 7.09187675 12 L 7.09187675 9.36486486 L 7.09187665 9.86
486483 Z M 7.09187675 7.76756757 L 7.4280112 7.76756757 C 8.01811686 7.76756757 8.4840319 7.63513646 8.82577031 7.37027027 C 9.16750871 7.10540408 9.33837535 6.74594822 9.33837535 6.29189189 C 9.33837535 5.49549151 8.81363737 5.0972973 7.76414566 5.0972973 L 7.09187675 5.0972973 L 7.09187675 7.76756757 Z M 7.09187675 7.76756757"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordEventsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordEvent.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordEvent.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordEvent.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 5.503906 12.742188 C 4.949219 12.742188 4.503906 12.292969 4.503906 11.742188 L 4.503906 3.792969 C 4.503906 3.242188 4.949219 2.792969 5.503906 2.792969 L 10.472656 2.792969 C 11.023438 2.792969 11.472656 3.242188 11.472656 3.792969 L 11.472656 4.882812 C 11.472656 5.4375 11.023438 5.882812 10.472656 5.882812 C 10.472656 5.882812 9.132812 5.882812 8.15625 5.882812 C 8.15625 5.992188 8.15625 5.996094 8.15625 6.101562 C 8.957031 6.101562 9.875 6.101562 9.875 6.101562 C 10.425781 6.101562 10.875 6.550781 10.875 7.101562 L 10.875 8.164062 C 10.875 8.71875 10.425781 9.164062 9.875 9.164062 C 9.875 9.164062 8.957031 9.164062 8.15625 9.164062 C 8.15625 9.382812 8.15625 9.398438 8.15625 9.613281 C 9.191406 9.613281 10.722656 9.613281 10.722656 9.613281 C 11.277344 9.613281 11.722656 10.0625 11.722656 10.613281 L 11.722656 11.742188 C 11.722656 12.292969 11.277344 12.742188 10.722656 12.742188 L 5.503
906 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordGarbageCollectionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordGarbageCollection.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordGarbageCollection.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordGarbageCollection.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(228, 198, 172)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(186, 157, 132)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(186, 157, 132)" d="M 4.773438 11.542969 C 3.855469 10.621094 3.390625 9.347656 3.390625 7.769531 C 3.390625 6.15625 3.863281 4.878906 4.789062 3.964844 C 5.710938 3.054688 7.003906 2.59375 8.625 2.59375 C 9.570312 2.59375 10.519531 2.707031 11.441406 2.929688 C 11.890625 3.035156 12.210938 3.4375 12.210938 3.902344 L 12.210938 5.195312 C 12.210938 5.519531 12.050781 5.824219 11.789062 6.011719 C 11.613281 6.132812 11.410156 6.195312 11.207031 6.195312 C 11.097656 6.195312 10.984375 6.179688 10.878906 6.140625 C 10.015625 5.835938 9.308594 5.683594 8.769531 5.683594 C 8.058594 5.683594 7.753906 5.941406 7.589844 6.132812 C 7.296875 6.476562 7.148438 7.019531 7.148438 7.746094 C 7.148438 8.445312 7.308594 8.972656 7.621094 9.320312 C 7.808594 9.523438 8.148438 9.796875 8.921875 9.796875 C 9.542969 9.796875 10.1875 9.632812 10.839844 9.308594 C 10.980469 9.242188 11.132812 9.207031 11.285156 9.207031 C 11.46875 9.207
031 11.648438 9.257812 11.8125 9.359375 C 12.105469 9.539062 12.285156 9.859375 12.285156 10.207031 L 12.285156 11.425781 C 12.285156 11.820312 12.050781 12.179688 11.691406 12.339844 C 10.792969 12.738281 9.730469 12.941406 8.527344 12.941406 C 6.957031 12.941406 5.691406 12.472656 4.773438 11.542969"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordLayoutsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordLayout.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordLayout.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordLayout.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(204, 116, 121)" d="M 5 13 L 6 13 L 11 13 L 12 13 L 12 12 L 12 10.8648649 L 12 9.86486486 L 11 9.86486486 L 8.57948709 9.86486483 L 8.57948718 4 L 8.57948718 3 L 7.57948718 3 L 6 3 L 5 3 L 5 4 L 5 12 L 5 13 Z M 5 13"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordPaintsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordPaint.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordPaint.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordPaint.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(176, 204, 105)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(152, 188, 77)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(152, 188, 77)" d="M 7.09187665 9.86486483 L 8.09187665 9.86486483 L 8.09187675 12 L 8.09187675 13 L 7.09187675 13 L 5.4 13 L 4.4 13 L 4.4 12 L 4.4 4 L 4.4 3 L 5.4 3 L 8.2907563 3 C 9.49663194 3 10.4135483 3.20769232 11.0534889 3.69149996 C 11.7636984 4.22843229 12.097479 5.0719049 12.097479 6.12432432 C 12.097479 7.27475638 11.6870881 8.23200847 10.8722916 8.91131913 C 10.0975424 9.55724163 9.06464428 9.86486486 7.80896359 9.86486486 L 7.09187675 9.86486486 L 7.09187675 9.36486486 L 7.09187675 8.86486486 L 7.80896359 8.86486486 C 8.11369101 8.86486486 8.39855198 8.84414571 8.66354709 8.80270722 C 9.30146061 8.70295376 9.82425299 8.48313329 10.2319328 8.14324324 C 10.8089665 7.66215976 11.097479 6.98919351 11.097479 6.12432432 C 11.097479 5.36035654 10.8817949 4.81531695 10.4504202 4.48918919 C 10.0190455 4.16306143 9.29916471 4 8.2907563 4 L 5.4 4 L 5.4 12 L 7.09187675 12 L 7.09187675 9.36486486 L 7.09187665 9.864
86483 Z M 7.09187675 7.76756757 L 7.4280112 7.76756757 C 8.01811686 7.76756757 8.4840319 7.63513646 8.82577031 7.37027027 C 9.16750871 7.10540408 9.33837535 6.74594822 9.33837535 6.29189189 C 9.33837535 5.49549151 8.81363737 5.0972973 7.76414566 5.0972973 L 7.09187675 5.0972973 L 7.09187675 7.76756757 Z M 7.09187675 7.76756757"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordProbeSampledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordProbeSampled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordProbeSampled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordProbeSampled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 7.09187665 9.86486483 L 8.09187665 9.86486483 L 8.09187675 12 L 8.09187675 13 L 7.09187675 13 L 5.4 13 L 4.4 13 L 4.4 12 L 4.4 4 L 4.4 3 L 5.4 3 L 8.2907563 3 C 9.49663194 3 10.4135483 3.20769232 11.0534889 3.69149996 C 11.7636984 4.22843229 12.097479 5.0719049 12.097479 6.12432432 C 12.097479 7.27475638 11.6870881 8.23200847 10.8722916 8.91131913 C 10.0975424 9.55724163 9.06464428 9.86486486 7.80896359 9.86486486 L 7.09187675 9.86486486 L 7.09187675 9.36486486 L 7.09187675 8.86486486 L 7.80896359 8.86486486 C 8.11369101 8.86486486 8.39855198 8.84414571 8.66354709 8.80270722 C 9.30146061 8.70295376 9.82425299 8.48313329 10.2319328 8.14324324 C 10.8089665 7.66215976 11.097479 6.98919351 11.097479 6.12432432 C 11.097479 5.36035654 10.8817949 4.81531695 10.4504202 4.48918919 C 10.0190455 4.16306143 9.29916471 4 8.2907563 4 L 5.4 4 L 5.4 12 L 7.09187675 12 L 7.09187675 9.36486486 L 7.09187665 9.86
486483 Z M 7.09187675 7.76756757 L 7.4280112 7.76756757 C 8.01811686 7.76756757 8.4840319 7.63513646 8.82577031 7.37027027 C 9.16750871 7.10540408 9.33837535 6.74594822 9.33837535 6.29189189 C 9.33837535 5.49549151 8.81363737 5.0972973 7.76414566 5.0972973 L 7.09187675 5.0972973 L 7.09187675 7.76756757 Z M 7.09187675 7.76756757"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordRenderingFramesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordRenderingFrame.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordRenderingFrame.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordRenderingFrame.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 12 3 L 11 3 L 5 3 L 4 3 L 4 4 L 4 12 L 4 12.962999 L 4.962 12.999 L 6.962 13.075 L 8 13.115 L 8 12.076 L 8 9 L 10 9 L 11 9 L 11 8 L 11 7 L 11 6 L 10 6 L 8 6 L 11 6 L 12 6 L 12 5 L 12 4 L 12 3 Z M 11 4 L 11 5 L 7 5 L 7 7 L 10 7 L 10 8 L 7 8 L 7 12.076 L 5 12 L 5 4 L 11 4 Z"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordScriptEvaluatedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordScriptEvaluated.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordScriptEvaluated.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordScriptEvaluated.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 L 3 1 Z M 3 1"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 5.19849793 12.6584609 C 5.2831472 12.676395 6.98277851 12.9487305 7.62939453 12.9487305 C 8.79640591 12.9487305 9.76331344 12.6806542 10.5034462 12.1146703 C 11.3037555 11.5026691 11.7177734 10.6286312 11.7177734 9.58544922 C 11.7177734 8.84534902 11.4998181 8.18341061 11.0628295 7.63852362 C 10.6767371 7.15709971 10.0557113 6.69185669 9.18734192 6.20492057 L 8.61524891 5.88648574 C 8.27558142 5.69523066 8.15431716 5.69238281 8.23632812 5.69238281 C 8.56703836 5.69238281 9.10333246 5.81936052 9.8138795 6.08542439 L 11.1645508 6.59118236 L 11.1645508 5.14892578 L 11.1645508 3.87597656 L 11.1645508 3.07965768 L 10.3884483 2.90136387 C 9.52406853 2.70279014 8.73593121 2.60205078 8.02148438 2.60205078 C 7.01081351 2.60205078 6.14909735 2.87110984 5.47554965 3.42697448 C 4.76046595 4.01711791 4.38964844 4.82767811 4.38964844 5.77734375 C 4.38964844 6.49239045 4.61205052 7.14196725 5.04920932 7.6884
1575 C 5.43639142 8.17239338 6.03437082 8.62885808 6.84888633 9.08727887 L 7.38545082 9.38538774 C 7.71699471 9.57330366 7.92926232 9.72631865 7.99164827 9.79813503 C 7.94460492 9.81851991 7.82252674 9.85302734 7.60253906 9.85302734 C 7.14294036 9.85302734 6.53493744 9.70437137 5.79174704 9.39341305 L 4.40576172 8.81350287 L 4.40576172 10.315918 L 4.40576172 11.6801758 L 4.40576172 12.4905083 L 5.19849793 12.6584609 C 5.52713094 12.7280865 5.52713094 12.7280865 5.57407851 12.738033 L 5.19849793 12.6584609 Z M 5.19849793 12.6584609"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordStylesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordStyle.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordStyle.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordStyle.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(204, 116, 121)" d="M 5.19849793 12.6584609 C 5.2831472 12.676395 6.98277851 12.9487305 7.62939453 12.9487305 C 8.79640591 12.9487305 9.76331344 12.6806542 10.5034462 12.1146703 C 11.3037555 11.5026691 11.7177734 10.6286312 11.7177734 9.58544922 C 11.7177734 8.84534902 11.4998181 8.18341061 11.0628295 7.63852362 C 10.6767371 7.15709971 10.0557113 6.69185669 9.18734192 6.20492057 L 8.61524891 5.88648574 C 8.27558142 5.69523066 8.15431716 5.69238281 8.23632812 5.69238281 C 8.56703836 5.69238281 9.10333246 5.81936052 9.8138795 6.08542439 L 11.1645508 6.59118236 L 11.1645508 5.14892578 L 11.1645508 3.87597656 L 11.1645508 3.07965768 L 10.3884483 2.90136387 C 9.52406853 2.70279014 8.73593121 2.60205078 8.02148438 2.60205078 C 7.01081351 2.60205078 6.14909735 2.87110984 5.47554965 3.42697448 C 4.76046595 4.01711791 4.38964844 4.82767811 4.38964844 5.77734375 C 4.38964844 6.49239045 4.61205052 7.14196725 5.04920932 7.6884
1575 C 5.43639142 8.17239338 6.03437082 8.62885808 6.84888633 9.08727887 L 7.38545082 9.38538774 C 7.71699471 9.57330366 7.92926232 9.72631865 7.99164827 9.79813503 C 7.94460492 9.81851991 7.82252674 9.85302734 7.60253906 9.85302734 C 7.14294036 9.85302734 6.53493744 9.70437137 5.79174704 9.39341305 L 4.40576172 8.81350287 L 4.40576172 10.315918 L 4.40576172 11.6801758 L 4.40576172 12.4905083 L 5.19849793 12.6584609 C 5.52713094 12.7280865 5.52713094 12.7280865 5.57407851 12.738033 L 5.19849793 12.6584609 Z M 5.19849793 12.6584609"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTimelineRecordTimersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordTimer.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordTimer.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TimelineRecordTimer.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(190, 165, 202)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(141, 118, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(153, 127, 166)" d="M 6.980469 12.742188 C 6.429688 12.742188 5.980469 12.292969 5.980469 11.742188 C 5.980469 11.742188 5.980469 7.34375 5.980469 5.882812 C 5.140625 5.882812 4.136719 5.882812 4.136719 5.882812 C 3.582031 5.882812 3.136719 5.4375 3.136719 4.882812 L 3.136719 3.792969 C 3.136719 3.242188 3.582031 2.792969 4.136719 2.792969 L 11.488281 2.792969 C 12.042969 2.792969 12.488281 3.242188 12.488281 3.792969 L 12.488281 4.882812 C 12.488281 5.4375 12.042969 5.882812 11.488281 5.882812 C 11.488281 5.882812 10.484375 5.882812 9.640625 5.882812 C 9.640625 7.34375 9.640625 11.742188 9.640625 11.742188 C 9.640625 12.292969 9.195312 12.742188 8.640625 12.742188 L 6.980469 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesToggleLeftSidebarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ToggleLeftSidebar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ToggleLeftSidebar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ToggleLeftSidebar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect class="stroked" stroke="black" fill="none" x="2.5" y="1.5" width="11" height="13"/>
- <rect class="filled" fill="black" x="4" y="3" width="2" height="10"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect stroke="currentColor" fill="none" x="2.5" y="1.5" width="11" height="13"/>
+ <rect fill="currentColor" x="4" y="3" width="2" height="10"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesToggleRightSidebarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/ToggleRightSidebar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/ToggleRightSidebar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/ToggleRightSidebar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect class="stroked" stroke="black" fill="none" x="2.5" y="1.5" width="11" height="13"/>
- <rect class="filled" fill="black" x="10" y="3" width="2" height="10"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect stroke="currentColor" fill="none" x="2.5" y="1.5" width="11" height="13"/>
+ <rect fill="currentColor" x="10" y="3" width="2" height="10"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeBooleansvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeBoolean.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeBoolean.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeBoolean.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 L 13 1 Z" fill="rgb(190, 165, 202)"/>
</span><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 M 13 2 C 13.552 2 14 2.449 14 3 L 14 13 C 14 13.552 13.552 14 13 14 L 3 14 C 2.449 14 2 13.552 2 13 L 2 3 C 2 2.449 2.449 2 3 2 L 13 2" fill="rgb(141, 118, 153)"/>
</span><span class="cx"> <path d="M 6.7266 10.872101 L 7.1006 10.872101 C 7.8306 10.872101 8.3356 10.7971 8.6116 10.6471 C 8.8896 10.5001 9.027599 10.2281 9.027599 9.8351 C 9.027599 9.4291 8.841599 9.0931 8.4716 8.8241 C 8.0996 8.555099 7.6316 8.421101 7.0656 8.421101 L 6.7266 8.421101 L 6.7266 10.872101 Z M 6.7266 7.3571 L 7.1396 7.3571 C 7.6286 7.3571 8.0186 7.2421 8.3056 7.013101 C 8.5956 6.7831 8.7386 6.4721 8.7386 6.0781 C 8.7386 5.7121 8.6226 5.4641 8.3926 5.3331 C 8.1586 5.2031 7.7216 5.1371 7.0776 5.1371 L 6.7266 5.1371 L 6.7266 7.3571 Z M 5.0876 12.0001 L 5.0876 4.0461 L 7.9306 4.0461 C 8.770599 4.0461 9.4116 4.1961 9.850599 4.4971 C 10.2896 4.7981 10.5086 5.2371 10.5086 5.8141 C 10.5086 6.770101 9.8386 7.4481 8.501599 7.8461 C 10.0656 8.2071 10.8476 8.9361 10.8476 10.0331 C 10.8476 10.6681 10.6186 11.1521 10.1616 11.4931 C 9.7036 11.8301 9.0456 12.0001 8.190599 12.0001 L 5.0876 12.0001 Z" fill="white"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeNullsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeNull.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeNull.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeNull.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 9.5625 12.742188 C 9.230469 12.742188 8.917969 12.574219 8.734375 12.300781 C 8.734375 12.300781 7.816406 10.941406 6.90625 9.585938 C 6.90625 10.617188 6.90625 11.742188 6.90625 11.742188 C 6.90625 12.292969 6.457031 12.742188 5.90625 12.742188 L 4.578125 12.742188 C 4.027344 12.742188 3.578125 12.292969 3.578125 11.742188 L 3.578125 3.792969 C 3.578125 3.242188 4.027344 2.792969 4.578125 2.792969 L 6.035156 2.792969 C 6.367188 2.792969 6.675781 2.957031 6.863281 3.230469 C 6.863281 3.230469 7.789062 4.601562 8.71875 5.96875 C 8.71875 4.925781 8.71875 3.792969 8.71875 3.792969 C 8.71875 3.242188 9.164062 2.792969 9.71875 2.792969 L 11.046875 2.792969 C 11.597656 2.792969 12.046875 3.242188 12.046875 3.792969 L 12.046875 11.742188 C 12.046875 12.292969 11.597656 12.742188 11.046875 12.742188 L 9.5625 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeNumbersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeNumber.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeNumber.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeNumber.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(148, 183, 219)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(106, 136, 170)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(113, 146, 184)" d="M 9.5625 12.742188 C 9.230469 12.742188 8.917969 12.574219 8.734375 12.300781 C 8.734375 12.300781 7.816406 10.941406 6.90625 9.585938 C 6.90625 10.617188 6.90625 11.742188 6.90625 11.742188 C 6.90625 12.292969 6.457031 12.742188 5.90625 12.742188 L 4.578125 12.742188 C 4.027344 12.742188 3.578125 12.292969 3.578125 11.742188 L 3.578125 3.792969 C 3.578125 3.242188 4.027344 2.792969 4.578125 2.792969 L 6.035156 2.792969 C 6.367188 2.792969 6.675781 2.957031 6.863281 3.230469 C 6.863281 3.230469 7.789062 4.601562 8.71875 5.96875 C 8.71875 4.925781 8.71875 3.792969 8.71875 3.792969 C 8.71875 3.242188 9.164062 2.792969 9.71875 2.792969 L 11.046875 2.792969 C 11.597656 2.792969 12.046875 3.242188 12.046875 3.792969 L 12.046875 11.742188 C 12.046875 12.292969 11.597656 12.742188 11.046875 12.742188 L 9.5625 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeObjectsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeObject.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeObject.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeObject.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 L 13 1 Z" fill="rgb(246, 222, 146)"/>
</span><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 M 13 2 C 13.552 2 14 2.449 14 3 L 14 13 C 14 13.552 13.552 14 13 14 L 3 14 C 2.449 14 2 13.552 2 13 L 2 3 C 2 2.449 2.449 2 3 2 L 13 2" fill="rgb(204, 181, 108)"/>
</span><span class="cx"> <path d="M 7.9736 11.041 C 8.6766 11.041 9.2346 10.757999 9.6436 10.193 C 10.0536 9.629 10.2586 8.864 10.2586 7.898 C 10.2586 6.962 10.0526 6.210999 9.6406 5.645 C 9.2286 5.079 8.683599 4.795 8.0056 4.795 C 7.3206 4.795 6.7726 5.079 6.3626 5.645 C 5.9526 6.210999 5.7476 6.967999 5.7476 7.915 C 5.7476 8.855 5.9516 9.611 6.3596 10.183 C 6.7676 10.754999 7.3066 11.041 7.9736 11.041 M 7.9526 12.15 C 6.7556 12.15 5.7986 11.766 5.0816 10.997 C 4.3646 10.226999 4.0056 9.202 4.0056 7.92 C 4.0056 6.624 4.3666 5.596 5.0866 4.833 C 5.8076 4.071 6.7806 3.69 8.0056 3.69 C 9.223599 3.69 10.1936 4.071 10.9156 4.833 C 11.6386 5.596 11.9996 6.62 11.9996 7.903999 C 11.9996 9.217999 11.6386 10.254999 10.9156 11.013 C 10.1936 11.771 9.2056 12.15 7.9526 12.15" fill="white"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeRegexsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeRegex.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeRegex.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeRegex.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 L 13 1 Z" fill="rgb(236, 151, 153)"/>
</span><span class="cx"> <path d="M 13 1 L 3 1 C 1.9 1 1 1.9 1 3 L 1 13 C 1 14.1 1.9 15 3 15 L 13 15 C 14.1 15 15 14.1 15 13 L 15 3 C 15 1.9 14.1 1 13 1 M 13 2 C 13.552 2 14 2.449 14 3 L 14 13 C 14 13.552 13.552 14 13 14 L 3 14 C 2.449 14 2 13.552 2 13 L 2 3 C 2 2.449 2.449 2 3 2 L 13 2" fill="rgb(191, 109, 113)"/>
</span><span class="cx"> <path d="M 8.1104 3 L 5.0004 3 L 4.0004 3 L 4.0004 4 L 4.0004 12 L 4.0004 13 L 5.0004 13 L 7.0004 13 L 8.0004 13 L 8.0004 12 L 8.0004 11.646 L 8.5584 12.533 L 8.8524 13 L 9.4044 13 L 11.7494 13 L 13.7134 13 L 12.5574 11.412 L 10.5494 8.650999 C 10.8754 8.459 11.1754 8.226 11.3874 7.924999 C 11.7944 7.351999 12.0004 6.702999 12.0004 6 C 12.0004 4.178 10.4734 3 8.1104 3 M 7.0004 7.632 L 7.0274 7.632 C 8.280399 7.632 9.0624 7.144 9.0624 6.167 C 9.0624 5.454 8.3484 5.097 7.2294 5.097 L 7.0004 5.097 L 7.0004 7.632 M 8.1104 4 C 9.7984 4 11.0004 4.678 11.0004 6 C 11.0004 6.493999 10.8574 6.943 10.5704 7.349 C 10.2854 7.754 9.5334 8.049 9.0314 8.264999 L 11.7494 12 L 9.4044 12 L 7.3434 8.729 L 7.0004 8.729 L 7.0004 12 L 5.0004 12 L 5.0004 4 L 8.1104 4" fill="rgb(204, 116, 121)"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeStringsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeString.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeString.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeString.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(236, 151, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(191, 109, 113)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(204, 116, 121)" d="M 5.19849793 12.6584609 C 5.2831472 12.676395 6.98277851 12.9487305 7.62939453 12.9487305 C 8.79640591 12.9487305 9.76331344 12.6806542 10.5034462 12.1146703 C 11.3037555 11.5026691 11.7177734 10.6286312 11.7177734 9.58544922 C 11.7177734 8.84534902 11.4998181 8.18341061 11.0628295 7.63852362 C 10.6767371 7.15709971 10.0557113 6.69185669 9.18734192 6.20492057 L 8.61524891 5.88648574 C 8.27558142 5.69523066 8.15431716 5.69238281 8.23632812 5.69238281 C 8.56703836 5.69238281 9.10333246 5.81936052 9.8138795 6.08542439 L 11.1645508 6.59118236 L 11.1645508 5.14892578 L 11.1645508 3.87597656 L 11.1645508 3.07965768 L 10.3884483 2.90136387 C 9.52406853 2.70279014 8.73593121 2.60205078 8.02148438 2.60205078 C 7.01081351 2.60205078 6.14909735 2.87110984 5.47554965 3.42697448 C 4.76046595 4.01711791 4.38964844 4.82767811 4.38964844 5.77734375 C 4.38964844 6.49239045 4.61205052 7.14196725 5.04920932 7.6884
1575 C 5.43639142 8.17239338 6.03437082 8.62885808 6.84888633 9.08727887 L 7.38545082 9.38538774 C 7.71699471 9.57330366 7.92926232 9.72631865 7.99164827 9.79813503 C 7.94460492 9.81851991 7.82252674 9.85302734 7.60253906 9.85302734 C 7.14294036 9.85302734 6.53493744 9.70437137 5.79174704 9.39341305 L 4.40576172 8.81350287 L 4.40576172 10.315918 L 4.40576172 11.6801758 L 4.40576172 12.4905083 L 5.19849793 12.6584609 C 5.52713094 12.7280865 5.52713094 12.7280865 5.57407851 12.738033 L 5.19849793 12.6584609 Z M 5.19849793 12.6584609"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeSymbolsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeSymbol.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeSymbol.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeSymbol.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(159, 221, 214)" d="M 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 L 3 1 Z M 3 1"/>
</span><span class="cx"> <path fill="rgb(63, 169, 156)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(90, 168, 159)" d="M 5.19849793 12.6584609 C 5.2831472 12.676395 6.98277851 12.9487305 7.62939453 12.9487305 C 8.79640591 12.9487305 9.76331344 12.6806542 10.5034462 12.1146703 C 11.3037555 11.5026691 11.7177734 10.6286312 11.7177734 9.58544922 C 11.7177734 8.84534902 11.4998181 8.18341061 11.0628295 7.63852362 C 10.6767371 7.15709971 10.0557113 6.69185669 9.18734192 6.20492057 L 8.61524891 5.88648574 C 8.27558142 5.69523066 8.15431716 5.69238281 8.23632812 5.69238281 C 8.56703836 5.69238281 9.10333246 5.81936052 9.8138795 6.08542439 L 11.1645508 6.59118236 L 11.1645508 5.14892578 L 11.1645508 3.87597656 L 11.1645508 3.07965768 L 10.3884483 2.90136387 C 9.52406853 2.70279014 8.73593121 2.60205078 8.02148438 2.60205078 C 7.01081351 2.60205078 6.14909735 2.87110984 5.47554965 3.42697448 C 4.76046595 4.01711791 4.38964844 4.82767811 4.38964844 5.77734375 C 4.38964844 6.49239045 4.61205052 7.14196725 5.04920932 7.68841
575 C 5.43639142 8.17239338 6.03437082 8.62885808 6.84888633 9.08727887 L 7.38545082 9.38538774 C 7.71699471 9.57330366 7.92926232 9.72631865 7.99164827 9.79813503 C 7.94460492 9.81851991 7.82252674 9.85302734 7.60253906 9.85302734 C 7.14294036 9.85302734 6.53493744 9.70437137 5.79174704 9.39341305 L 4.40576172 8.81350287 L 4.40576172 10.315918 L 4.40576172 11.6801758 L 4.40576172 12.4905083 L 5.19849793 12.6584609 C 5.52713094 12.7280865 5.52713094 12.7280865 5.57407851 12.738033 L 5.19849793 12.6584609 Z M 5.19849793 12.6584609"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesTypeUndefinedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/TypeUndefined.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/TypeUndefined.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/TypeUndefined.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <path fill="rgb(203, 203, 203)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 Z"/>
</span><span class="cx"> <path fill="rgb(153, 153, 153)" d="M 13 1 L 3 1 C 1.898438 1 1 1.898438 1 3 L 1 13 C 1 14.101562 1.898438 15 3 15 L 13 15 C 14.101562 15 15 14.101562 15 13 L 15 3 C 15 1.898438 14.101562 1 13 1 M 13 2 C 13.550781 2 14 2.449219 14 3 L 14 13 C 14 13.550781 13.550781 14 13 14 L 3 14 C 2.449219 14 2 13.550781 2 13 L 2 3 C 2 2.449219 2.449219 2 3 2 L 13 2"/>
</span><span class="cx"> <path fill="rgb(166, 166, 166)" d="M 6.796875 12.742188 C 6.242188 12.742188 5.796875 12.292969 5.796875 11.742188 L 5.796875 10.417969 C 5.796875 10.25 5.835938 10.09375 5.910156 9.953125 C 5.835938 9.816406 5.796875 9.660156 5.796875 9.492188 L 5.796875 9.339844 C 5.796875 8.511719 6.152344 7.699219 6.847656 6.925781 L 7.234375 6.503906 C 7.671875 6.019531 7.734375 5.757812 7.746094 5.671875 C 7.691406 5.660156 7.609375 5.652344 7.488281 5.652344 C 7.097656 5.652344 6.613281 5.78125 6.046875 6.039062 C 5.914062 6.101562 5.773438 6.128906 5.632812 6.128906 C 5.441406 6.128906 5.253906 6.078125 5.089844 5.972656 C 4.804688 5.785156 4.628906 5.472656 4.628906 5.128906 L 4.628906 3.917969 C 4.628906 3.476562 4.917969 3.089844 5.339844 2.960938 C 6.144531 2.71875 6.941406 2.59375 7.71875 2.59375 C 8.769531 2.59375 9.632812 2.816406 10.285156 3.25 C 11.058594 3.761719 11.46875 4.511719 11.46875 5.414062 C 11.46875 6.214844 11.066406
7 10.269531 7.753906 L 9.917969 8.09375 C 9.546875 8.441406 9.460938 8.601562 9.453125 8.621094 C 9.4375 8.652344 9.390625 8.765625 9.390625 9.035156 L 9.390625 9.492188 C 9.390625 9.660156 9.351562 9.816406 9.277344 9.953125 C 9.351562 10.09375 9.390625 10.25 9.390625 10.417969 L 9.390625 11.742188 C 9.390625 12.292969 8.945312 12.742188 8.390625 12.742188 L 6.796875 12.742188"/>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesUndocksvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Undock.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Undock.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Undock.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
- <rect class="stroked" fill="none" stroke="black" x="4.5" y="5.5" width="11" height="9"/>
- <path class="stroked" fill="none" stroke="black" d="M 3 10.5 L 0.5 10.5 L 0.5 1.5 L 11.5 1.5 L 11.5 4"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect fill="none" stroke="currentColor" x="4.5" y="5.5" width="11" height="9"/>
+ <path fill="none" stroke="currentColor" d="M 3 10.5 L 0.5 10.5 L 0.5 1.5 L 11.5 1.5 L 11.5 4"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesUpDownArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/UpDownArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/UpDownArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/UpDownArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 12">
- <path class="stroked" fill="none" stroke="black" stroke-linecap="square" d="M 0.5 3.5 L 2.5 1.5 L 4.5 3.5"/>
- <path class="stroked" fill="none" stroke="black" stroke-linecap="square" d="M 0.5 8.5 L 2.5 10.5 L 4.5 8.5"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 5 12">
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 0.5 3.5 L 2.5 1.5 L 4.5 3.5"/>
+ <path fill="none" stroke="currentColor" stroke-linecap="square" d="M 0.5 8.5 L 2.5 10.5 L 4.5 8.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesUserInputPromptsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPrompt.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPrompt.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPrompt.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <path fill="rgb(77, 153, 255)" d="M 7.910156 5.402344 C 7.859375 5.535156 7.78125 5.65625 7.675781 5.765625 L 4.730469 8.710938 C 4.324219 9.117188 3.664062 9.117188 3.257812 8.710938 C 2.851562 8.304688 2.851562 7.644531 3.257812 7.238281 L 5.484375 5.011719 L 3.265625 2.792969 C 2.859375 2.386719 2.859375 1.726562 3.265625 1.320312 C 3.671875 0.914062 4.332031 0.914062 4.738281 1.320312 L 7.683594 4.265625 C 7.992188 4.574219 8.066406 5.023438 7.910156 5.402344 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesUserInputPromptPrevioussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPromptPrevious.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPromptPrevious.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/UserInputPromptPrevious.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <path fill="rgb(136, 136, 136)" d="M 7.910156 5.402344 C 7.859375 5.535156 7.78125 5.65625 7.675781 5.765625 L 4.730469 8.710938 C 4.324219 9.117188 3.664062 9.117188 3.257812 8.710938 C 2.851562 8.304688 2.851562 7.644531 3.257812 7.238281 L 5.484375 5.011719 L 3.265625 2.792969 C 2.859375 2.386719 2.859375 1.726562 3.265625 1.320312 C 3.671875 0.914062 4.332031 0.914062 4.738281 1.320312 L 7.683594 4.265625 C 7.992188 4.574219 8.066406 5.023438 7.910156 5.402344 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesUserInputResultsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/UserInputResult.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/UserInputResult.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/UserInputResult.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <path fill="rgb(181, 181, 181)" d="M 3.515625 5.011719 L 5.742188 7.238281 C 6.148438 7.644531 6.148438 8.304688 5.742188 8.710938 C 5.335938 9.117188 4.675781 9.117188 4.269531 8.710938 L 1.324219 5.765625 C 1.21875 5.65625 1.140625 5.535156 1.089844 5.402344 C 0.933594 5.023438 1.007812 4.574219 1.316406 4.265625 L 4.261719 1.320312 C 4.667969 0.914062 5.328125 0.914062 5.734375 1.320312 C 6.140625 1.726562 6.140625 2.386719 5.734375 2.792969 Z M 7 6 C 6.445312 6 6 5.550781 6 5 C 6 4.449219 6.445312 4 7 4 C 7.554688 4 8 4.449219 8 5 C 8 5.550781 7.554688 6 7 6 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesVisualStyleNonesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/VisualStyleNone.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/VisualStyleNone.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/VisualStyleNone.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <line class="stroked" x1="0" y1="8" x2="14" y2="8" stroke="black"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <line stroke="currentColor" x1="0" y1="8" x2="14" y2="8"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesVisualStylePropertyLinkedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyLinked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyLinked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyLinked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <circle class="filled" cx="8" cy="8" r="4" fill="black" stroke="none" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <circle fill="currentColor" cx="8" cy="8" r="4"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesVisualStylePropertyUnlinkedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyUnlinked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyUnlinked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/VisualStylePropertyUnlinked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2015 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path class="filled" d="M 6.5 4 C 0 4 0 12 6.5 12" stroke="none" />
- <path class="filled" d="M 9.5 4 C 16 4 16 12 9.5 12" stroke="none" />
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="currentColor" d="M 6.5 4 C 0 4 0 12 6.5 12"/>
+ <path fill="currentColor" d="M 9.5 4 C 16 4 16 12 9.5 12"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesWarningsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Warning.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Warning.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Warning.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2013 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <path fill="white" d="M 4 2 L 6.195312 2 L 6.195312 8.996094 L 4 8.996094 Z"/>
</span><span class="cx"> <path fill="rgb(246, 187, 14)" d="M 9.851562 9.453125 C 9.574219 9.859375 9.007812 9.996094 8.632812 9.996094 C 8.398438 9.996094 1.59375 9.996094 1.367188 9.996094 C 0.992188 9.996094 0.425781 9.859375 0.148438 9.453125 C -0.109375 9.074219 0.03125 8.410156 0.230469 8.046875 C 1.351562 6.027344 2.4375 3.722656 4.023438 0.707031 C 4.535156 -0.265625 5.542969 -0.195312 6.003906 0.695312 C 7.105469 2.832031 8.648438 6.027344 9.769531 8.046875 C 9.96875 8.410156 10.109375 9.074219 9.851562 9.453125 Z M 6 3 C 6 2.449219 5.550781 2 5 2 C 4.449219 2 4 2.449219 4 3 L 4 5 C 4 5.550781 4.449219 6 5 6 C 5.550781 6 6 5.550781 6 5 Z M 5 7 C 4.449219 7 4 7.449219 4 8 C 4 8.550781 4.449219 9 5 9 C 5.550781 9 6 8.550781 6 8 C 6 7.449219 5.550781 7 5 7 Z"/>
</span><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesWeightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/Weight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/Weight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/Weight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Copyright © 2014 Apple Inc. All rights reserved. -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
- <path fill="none" stroke="black" d="M 2.5 13.5 L 4.5 4.5 L 11.5 4.5 L 13.5 13.5 L 2.5 13.5 Z"/>
- <rect fill="none" stroke="black" x="6.5" y="2.5" width="3" height="2" rx="1"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="currentColor" d="M 2.5 13.5 L 4.5 4.5 L 11.5 4.5 L 13.5 13.5 L 2.5 13.5 Z"/>
+ <rect fill="none" stroke="currentColor" x="6.5" y="2.5" width="3" height="2" rx="1"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBackForwardArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BackForwardArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BackForwardArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BackForwardArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 9 9">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span><span class="lines">@@ -10,14 +10,6 @@
</span><span class="cx"> display: initial;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- path {
- fill: inherit;
- }
-
- svg[id $= "-mask"] {
- fill: black;
- }
-
</del><span class="cx"> svg[id $= "-normal"] {
</span><span class="cx"> fill: hsl(0, 0%, 33%);
</span><span class="cx"> }
</span><span class="lines">@@ -28,15 +20,15 @@
</span><span class="cx"> </style>
</span><span class="cx">
</span><span class="cx"> <defs>
</span><del>- <path id="back-arrow-path" d="m6.3438 0c-0.1429 0.034005-0.2751 0.11116-0.375 0.21875l-3.75 3.75-0.5 0.53125 0.5 0.53125 3.75 3.75c0.1398 0.1379 0.3348 0.2182 0.5312 0.2188h0.03125 0.0625 0.65625v-0.5625-0.09375c0.0359-0.2367-0.048-0.4885-0.2188-0.6563l-3.1874-3.1875 3.1874-3.2188c0.1389-0.139 0.2195-0.33465 0.2188-0.5312v-0.15625-0.59375h-0.5938-0.0937-0.0625-0.0938z"/>
- <path id="forward-arrow-path" d="m2.6436 0c0.14283 0.034005 0.27509 0.11116 0.375 0.21875l3.75 3.75 0.5 0.53125-0.5 0.53125-3.75 3.75c-0.1399 0.1379-0.3349 0.2182-0.5313 0.2188h-0.03125-0.0625-0.65625v-0.5625-0.09375c-0.0358-0.2367 0.0481-0.4885 0.2188-0.6563l3.1875-3.1875-3.1875-3.2188c-0.1389-0.139-0.2194-0.33465-0.2188-0.5312v-0.15625-0.59375h0.59375 0.09375 0.0625 0.09375z"/>
</del><ins>+ <symbol id="back-arrow-symbol" viewBox="0 0 9 9"><path fill="inherit" d="m6.3438 0c-0.1429 0.034005-0.2751 0.11116-0.375 0.21875l-3.75 3.75-0.5 0.53125 0.5 0.53125 3.75 3.75c0.1398 0.1379 0.3348 0.2182 0.5312 0.2188h0.03125 0.0625 0.65625v-0.5625-0.09375c0.0359-0.2367-0.048-0.4885-0.2188-0.6563l-3.1874-3.1875 3.1874-3.2188c0.1389-0.139 0.2195-0.33465 0.2188-0.5312v-0.15625-0.59375h-0.5938-0.0937-0.0625-0.0938z"/></symbol>
+ <symbol id="forward-arrow-symbol" viewBox="0 0 9 9"><path fill="inherit" d="m2.6436 0c0.14283 0.034005 0.27509 0.11116 0.375 0.21875l3.75 3.75 0.5 0.53125-0.5 0.53125-3.75 3.75c-0.1399 0.1379-0.3349 0.2182-0.5313 0.2188h-0.03125-0.0625-0.65625v-0.5625-0.09375c-0.0358-0.2367 0.0481-0.4885 0.2188-0.6563l3.1875-3.1875-3.1875-3.2188c-0.1389-0.139-0.2194-0.33465-0.2188-0.5312v-0.15625-0.59375h0.59375 0.09375 0.0625 0.09375z"/></symbol>
</ins><span class="cx"> </defs>
</span><span class="cx">
</span><del>- <svg id="back-arrow-mask"><use xlink:href="#back-arrow-path"/></svg>
- <svg id="back-arrow-normal"><use xlink:href="#back-arrow-path"/></svg>
- <svg id="back-arrow-active"><use xlink:href="#back-arrow-path"/></svg>
</del><ins>+ <svg id="back-arrow-mask"><use fill="currentColor" xlink:href="#back-arrow-symbol"/></svg>
+ <svg id="back-arrow-normal"><use xlink:href="#back-arrow-symbol"/></svg>
+ <svg id="back-arrow-active"><use xlink:href="#back-arrow-symbol"/></svg>
</ins><span class="cx">
</span><del>- <svg id="forward-arrow-mask"><use xlink:href="#forward-arrow-path"/></svg>
- <svg id="forward-arrow-normal"><use xlink:href="#forward-arrow-path"/></svg>
- <svg id="forward-arrow-active"><use xlink:href="#forward-arrow-path"/></svg>
</del><ins>+ <svg id="forward-arrow-mask"><use fill="currentColor" xlink:href="#forward-arrow-symbol"/></svg>
+ <svg id="forward-arrow-normal"><use xlink:href="#forward-arrow-symbol"/></svg>
+ <svg id="forward-arrow-active"><use xlink:href="#forward-arrow-symbol"/></svg>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointActionAddsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionAdd.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionAdd.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionAdd.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="#bebebe" d="m7 3v4h-4v2h4v4h2v-4h4v-2h-4v-4h-2z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="#bebebe" d="m7 3v4h-4v2h4v4h2v-4h4v-2h-4v-4h-2z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointActionRemovesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionRemove.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionRemove.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointActionRemove.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" fill="#bebebe" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" fill="#bebebe"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 21 12">
- <path d="m2.925 1c-0.4468 0-0.8501 0.1361-1.1562 0.4062-0.3062 0.2702-0.4688 0.6721-0.4688 1.125v7.9375c0 0.46074 0.12924 0.88567 0.4375 1.1562 0.3083 0.271 0.7346 0.375 1.1875 0.375h7.219 0.156l0.125-0.094 5.063-5.0935 0.281-0.2813-0.281-0.25-5.063-5.1562-0.125-0.125h-0.156z" class="filled"/>
- <path fill="#3465a4" stroke="#204a87" stroke-width=".78777" d="m10.146 0.39389 5.0713 5.1409-5.0713 5.0713h-7.2048c-0.78066 0-1.2473-0.3721-1.2473-1.1324v-7.9474c0-0.72715 0.49521-1.1324 1.2473-1.1324z" class="filled"/>
- <path fill="#729fcf" d="m14.706 5.5-4.7266-4.7266h-7.09c-0.78777 0-0.78777 0.78777-0.78777 0.78777h7.8777z" opacity=".48980" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 21 12">
+ <path d="m2.925 1c-0.4468 0-0.8501 0.1361-1.1562 0.4062-0.3062 0.2702-0.4688 0.6721-0.4688 1.125v7.9375c0 0.46074 0.12924 0.88567 0.4375 1.1562 0.3083 0.271 0.7346 0.375 1.1875 0.375h7.219 0.156l0.125-0.094 5.063-5.0935 0.281-0.2813-0.281-0.25-5.063-5.1562-0.125-0.125h-0.156z"/>
+ <path fill="#3465a4" stroke="#204a87" stroke-width=".78777" d="m10.146 0.39389 5.0713 5.1409-5.0713 5.0713h-7.2048c-0.78066 0-1.2473-0.3721-1.2473-1.1324v-7.9474c0-0.72715 0.49521-1.1324 1.2473-1.1324z"/>
+ <path fill="#729fcf" d="m14.706 5.5-4.7266-4.7266h-7.09c-0.78777 0-0.78777 0.78777-0.78777 0.78777h7.8777z" opacity=".48980"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointInactiveButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointInactiveButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointInactiveButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/BreakpointInactiveButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 21 12">
- <path d="m2.925 1c-0.4468 0-0.8501 0.1361-1.1562 0.4062-0.3062 0.2702-0.4688 0.6721-0.4688 1.125v7.9375c0 0.46074 0.1605 0.88567 0.46875 1.1562 0.3082 0.271 0.7033 0.375 1.1562 0.375h7.219 0.156l0.125-0.094 5.063-5.0935 0.281-0.2813-0.281-0.25-5.063-5.1562-0.125-0.125h-0.156z" class="filled"/>
- <path fill="#babdb6" stroke="#888a85" stroke-width=".78777" d="m10.146 0.39389 5.0713 5.1409-5.0713 5.0713h-7.2048c-0.78066 0-1.2473-0.3721-1.2473-1.1324v-7.9474c0-0.72715 0.49521-1.1324 1.2473-1.1324z" class="filled"/>
- <path fill="#fff" d="m14.706 5.5-4.7266-4.7266h-7.09c-0.78777 0-0.78777 0.78777-0.78777 0.78777h7.8777z" opacity=".48980" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 21 12">
+ <path d="m2.925 1c-0.4468 0-0.8501 0.1361-1.1562 0.4062-0.3062 0.2702-0.4688 0.6721-0.4688 1.125v7.9375c0 0.46074 0.1605 0.88567 0.46875 1.1562 0.3082 0.271 0.7033 0.375 1.1562 0.375h7.219 0.156l0.125-0.094 5.063-5.0935 0.281-0.2813-0.281-0.25-5.063-5.1562-0.125-0.125h-0.156z"/>
+ <path fill="#babdb6" stroke="#888a85" stroke-width=".78777" d="m10.146 0.39389 5.0713 5.1409-5.0713 5.0713h-7.2048c-0.78066 0-1.2473-0.3721-1.2473-1.1324v-7.9474c0-0.72715 0.49521-1.1324 1.2473-1.1324z"/>
+ <path fill="#fff" d="m14.706 5.5-4.7266-4.7266h-7.09c-0.78777 0-0.78777 0.78777-0.78777 0.78777h7.8777z" opacity=".48980"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkBreakpointssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Breakpoints.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Breakpoints.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Breakpoints.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m10.025 3.125 4.875 4.875l-4.875 4.875h-7.3412c-0.4311-0.018-0.784-0.4-0.784-0.813v-8.125c0-0.4308 0.2808-0.812 0.8197-0.812z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m10.025 3.125 4.875 4.875l-4.875 4.875h-7.3412c-0.4311-0.018-0.784-0.4-0.784-0.813v-8.125c0-0.4308 0.2808-0.812 0.8197-0.812z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCheckerssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Checkers.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Checkers.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Checkers.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" fill="#cccccc" version="1.1" viewBox="0 0 6 6">
- <rect width="3" height="3" y="3" class="filled"/>
- <rect width="3" height="3" x="3" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" fill="#cccccc" version="1.1" viewBox="0 0 6 6">
+ <rect width="3" height="3" y="3"/>
+ <rect width="3" height="3" x="3"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCirclesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Circle.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Circle.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Circle.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path d="m10.5 6.5a4 4 0 0 1 -8 0 4 4 0 1 1 8 0z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="m10.5 6.5a4 4 0 0 1 -8 0 4 4 0 1 1 8 0z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkClearBothsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearBoth.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearBoth.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearBoth.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,39 +1,39 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z" class="filled"/>
- <path d="m1.2724 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.00528-0.29994-0.22762-0.58677-0.5223-0.643z" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="9.5002" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="10.143" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="10.786" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="11.429" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="12.072" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="2.0359" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="3.3215" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="2.6787" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="3.9644" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".76336" x="4.6072" y="12.594" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="6.9289" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="7.5717" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="8.2145" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="8.8574" fill-rule="evenodd" class="filled"/>
- <path d="m11.272 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.0053-0.29994-0.22762-0.58677-0.5223-0.643z" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="9.5002" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="10.143" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="10.786" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="11.429" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="12.072" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="12.036" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="13.322" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="12.679" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="13.964" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".76336" x="14.607" y="12.594" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="6.9289" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="7.5717" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="8.2145" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="8.8574" fill-rule="evenodd" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z"/>
+ <path d="m1.2724 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.00528-0.29994-0.22762-0.58677-0.5223-0.643z"/>
+ <rect width=".64282" height=".64283" x="1.393" y="9.5002" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="10.143" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="10.786" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="11.429" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="12.072" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="2.0359" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="3.3215" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="2.6787" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="3.9644" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".76336" x="4.6072" y="12.594" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="6.9289" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="7.5717" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="8.2145" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="8.8574" fill-rule="evenodd"/>
+ <path d="m11.272 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.0053-0.29994-0.22762-0.58677-0.5223-0.643z"/>
+ <rect width=".64282" height=".64283" x="11.393" y="9.5002" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="10.143" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="10.786" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="11.429" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="12.072" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="12.036" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="13.322" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="12.679" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="13.964" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".76336" x="14.607" y="12.594" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="6.9289" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="7.5717" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="8.2145" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="8.8574" fill-rule="evenodd"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkClearLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,22 +1,22 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z" class="filled"/>
- <path d="m1.2724 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.00528-0.29994-0.22762-0.58677-0.5223-0.643z" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="9.5002" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="10.143" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="10.786" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="11.429" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="12.072" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="2.0359" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="3.3215" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="2.6787" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="3.9644" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".76336" x="4.6072" y="12.594" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="6.9289" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="7.5717" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="1.393" y="8.2145" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x=".75020" y="8.8574" fill-rule="evenodd" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z"/>
+ <path d="m1.2724 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.00528-0.29994-0.22762-0.58677-0.5223-0.643z"/>
+ <rect width=".64282" height=".64283" x="1.393" y="9.5002" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="10.143" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="10.786" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="11.429" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="12.072" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="2.0359" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="3.3215" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="2.6787" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="3.9644" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".76336" x="4.6072" y="12.594" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="6.9289" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="7.5717" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="1.393" y="8.2145" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x=".75020" y="8.8574" fill-rule="evenodd"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkClearRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ClearRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,22 +1,22 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z" class="filled"/>
- <path d="m11.272 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.0053-0.29994-0.22762-0.58677-0.5223-0.643z" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="9.5002" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="10.143" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="10.786" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="11.429" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="12.072" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="12.036" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="13.322" y="12.714" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="12.679" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="13.964" y="13.357" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".76336" x="14.607" y="12.594" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="6.9289" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="7.5717" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="11.393" y="8.2145" fill-rule="evenodd" class="filled"/>
- <rect width=".64282" height=".64283" x="10.75" y="8.8574" fill-rule="evenodd" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m6.2724 2c-0.2947 0.0562-0.5276 0.3431-0.5223 0.643v10.714c0 0.337 0.3062 0.643 0.6428 0.643h3.2142c0.33658-0.000033 0.6428-0.30626 0.64283-0.64283v-10.714c0.005-0.2999-0.228-0.5868-0.5224-0.643zm0.76336 1.286h1.9285v9.4283h-1.9285z"/>
+ <path d="m11.272 2c-0.29467 0.056228-0.52758 0.34306-0.5223 0.643v4.9293h1.2857v-4.2863h1.9285v9.4284h1.2857v-10.071c0.0053-0.29994-0.22762-0.58677-0.5223-0.643z"/>
+ <rect width=".64282" height=".64283" x="11.393" y="9.5002" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="10.143" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="10.786" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="11.429" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="12.072" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="12.036" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="13.322" y="12.714" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="12.679" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="13.964" y="13.357" fill-rule="evenodd"/>
+ <rect width=".64282" height=".76336" x="14.607" y="12.594" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="6.9289" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="7.5717" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="11.393" y="8.2145" fill-rule="evenodd"/>
+ <rect width=".64282" height=".64283" x="10.75" y="8.8574" fill-rule="evenodd"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkClosesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Close.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Close.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Close.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 14">
- <path d="m4 3h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l2.2813-2.25-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path d="m4 3h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l2.2813-2.25-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCloseLargesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseLarge.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseLarge.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseLarge.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4 4h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.188 0.281 0.454 0.281 0.719v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c-0.000003-0.26529 0.09306-0.53058 0.28125-0.71875l2.2813-2.2498-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4 4h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.188 0.281 0.454 0.281 0.719v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c-0.000003-0.26529 0.09306-0.53058 0.28125-0.71875l2.2813-2.2498-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCloseWhitesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseWhite.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseWhite.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CloseWhite.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 14">
- <path fill="#fff" d="m4 3h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l2.2813-2.25-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path fill="#fff" d="m4 3h1c0.01037-0.00012 0.02079-0.00046 0.03125 0 0.25495 0.0112 0.50987 0.12858 0.6875 0.3125l2.2812 2.2813 2.312-2.2813c0.266-0.2305 0.447-0.3055 0.688-0.3125h1v1c0 0.28647-0.03434 0.55065-0.25 0.75l-2.2812 2.2812 2.25 2.25c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.2653-0.00001-0.53059-0.0931-0.71875-0.28125l-2.281-2.2815-2.2812 2.2815c-0.1882 0.188-0.4535 0.281-0.7188 0.281h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l2.2813-2.25-2.2813-2.2812c-0.2107-0.1946-0.3031-0.4692-0.2812-0.75v-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkConsolesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Console.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Console.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Console.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m2.1875 0.5c-1.2055 0-2.1875 1.0167-2.1875 2.2188v10.562c0 1.202 0.98197 2.219 2.1875 2.219h11.625c1.206 0 2.188-1.017 2.188-2.219v-10.562c0-1.2023-0.982-2.219-2.188-2.219h-11.625zm0 2h11.625c0.123 0 0.188 0.0809 0.188 0.2188v10.562c0 0.138-0.065 0.219-0.188 0.219h-11.625c-0.1223 0-0.187-0.081-0.187-0.219v-10.562c0-0.1381 0.0647-0.219 0.1875-0.219z" class="filled"/>
- <path d="m4.3125 6.4062a0.60006 0.60006 0 0 0 -0.25 1.0313l1.5625 1.5625-1.5625 1.562a0.61872 0.61872 0 1 0 0.875 0.875l2-2a0.60006 0.60006 0 0 0 0 -0.875l-2-2a0.60006 0.60006 0 0 0 -0.625 -0.1558z" class="filled"/>
- <rect width="3" height="1" x="8" y="10.5" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m2.1875 0.5c-1.2055 0-2.1875 1.0167-2.1875 2.2188v10.562c0 1.202 0.98197 2.219 2.1875 2.219h11.625c1.206 0 2.188-1.017 2.188-2.219v-10.562c0-1.2023-0.982-2.219-2.188-2.219h-11.625zm0 2h11.625c0.123 0 0.188 0.0809 0.188 0.2188v10.562c0 0.138-0.065 0.219-0.188 0.219h-11.625c-0.1223 0-0.187-0.081-0.187-0.219v-10.562c0-0.1381 0.0647-0.219 0.1875-0.219z"/>
+ <path d="m4.3125 6.4062a0.60006 0.60006 0 0 0 -0.25 1.0313l1.5625 1.5625-1.5625 1.562a0.61872 0.61872 0 1 0 0.875 0.875l2-2a0.60006 0.60006 0 0 0 0 -0.875l-2-2a0.60006 0.60006 0 0 0 -0.625 -0.1558z"/>
+ <rect width="3" height="1" x="8" y="10.5"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkContentFlowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ContentFlow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ContentFlow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ContentFlow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="#bebebe" d="m2.8124 0.50055a1.0001 1.0001 0 0 0 -0.8125 1v13a1.0001 1.0001 0 0 0 1 1h10a1.0001 1.0001 0 0 0 1 -1v-9.4375a1.0001 1.0001 0 0 0 -0.28125 -0.71875l-3.563-3.563a1.0001 1.0001 0 0 0 -0.71875 -0.28125h-6.4375a1.0001 1.0001 0 0 0 -0.0937 0 1.0001 1.0001 0 0 0 -0.0937 0zm1.1875 2h5v3h3v8h-8v-11z" class="filled"/>
- <path fill="#bebebe" d="m9.4173 6.111c-0.86023 0-1.5563 0.72246-1.5563 1.5827s0.69608 1.5563 1.5563 1.5563c0.86024 0 1.5827-0.69608 1.5827-1.5563 0-0.86023-0.72246-1.5827-1.5827-1.5827zm0 1.0024c0.3198 0 0.58032 0.26053 0.58032 0.58032 0 0.3198-0.26052 0.55395-0.58032 0.55395s-0.55394-0.23415-0.55394-0.55395c0-0.31979 0.23414-0.58032 0.55394-0.58032z" class="filled"/>
- <rect width="2.1" height="5.5" x="5" y="3.5589" fill="#bebebe" class="filled"/>
- <rect width="6" height="2.4" x="5" y="10.1" fill="#bebebe" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="#bebebe" d="m2.8124 0.50055a1.0001 1.0001 0 0 0 -0.8125 1v13a1.0001 1.0001 0 0 0 1 1h10a1.0001 1.0001 0 0 0 1 -1v-9.4375a1.0001 1.0001 0 0 0 -0.28125 -0.71875l-3.563-3.563a1.0001 1.0001 0 0 0 -0.71875 -0.28125h-6.4375a1.0001 1.0001 0 0 0 -0.0937 0 1.0001 1.0001 0 0 0 -0.0937 0zm1.1875 2h5v3h3v8h-8v-11z"/>
+ <path fill="#bebebe" d="m9.4173 6.111c-0.86023 0-1.5563 0.72246-1.5563 1.5827s0.69608 1.5563 1.5563 1.5563c0.86024 0 1.5827-0.69608 1.5827-1.5563 0-0.86023-0.72246-1.5827-1.5827-1.5827zm0 1.0024c0.3198 0 0.58032 0.26053 0.58032 0.58032 0 0.3198-0.26052 0.55395-0.58032 0.55395s-0.55394-0.23415-0.55394-0.55395c0-0.31979 0.23414-0.58032 0.55394-0.58032z"/>
+ <rect width="2.1" height="5.5" x="5" y="3.5589" fill="#bebebe"/>
+ <rect width="6" height="2.4" x="5" y="10.1" fill="#bebebe"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCrosshairsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Crosshair.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Crosshair.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Crosshair.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m7.9012 0.008034c-0.2434 0.046493-0.4366 0.28375-0.4322 0.53196v0.6317c-3.3628 0.2615-6.0392 2.9292-6.317 6.2837h-0.53196c-0.033035-0.00319-0.066707-0.00319-0.099742 0-0.27869 0.025321-0.52481 0.31938-0.49871 0.59845 0.02613 0.27908 0.31992 0.49246 0.59845 0.46546h0.53196c0.24742 3.3854 2.932 6.1202 6.317 6.3835v0.53196c-0.0043 0.281 0.2514 0.565 0.532 0.565s0.5359-0.284 0.5319-0.565v-0.53196c3.4071-0.253 6.1181-3.008 6.3501-6.4169h0.5652c0.28058 0.00426 0.53196-0.25089 0.53196-0.53196 0-0.28106-0.25138-0.53594-0.53196-0.53196h-0.5652c-0.293-3.3472-2.987-6.0009-6.3501-6.2505v-0.6317c0.0053-0.31511-0.3226-0.59107-0.6317-0.53197zm-0.46546 3.3247v0.53196c-0.00426 0.28058 0.25089 0.53196 0.53196 0.53196 0.28106 0 0.53594-0.25138 0.53196-0.53196v-0.53196c2.2324 0.2309 3.9734 1.9338 4.2224 4.156h-0.5652c-0.28058-0.00398-0.53196 0.25089-0.53196 0.53196 0 0.28106 0.25138 0.53621 0.53196 0.53196h0.5652c-0.24169 2.2348-1.9832 3.9881-4.2224 4.2224v-0.5652c0.00398-0.28
058-0.25089-0.53196-0.53196-0.53196-0.28106 0-0.53621 0.25138-0.53196 0.53196v0.53196c-2.2127-0.262-3.9286-1.999-4.1559-4.2226h0.53196c0.28058 0.00426 0.53196-0.25089 0.53196-0.53196 0-0.28106-0.25138-0.53594-0.53196-0.53196h-0.49871c0.2686-2.1715 1.9445-3.8688 4.1226-4.1227z" class="filled"/>
- <path d="m9.0449 7.9748a1.0639 1.0639 0 0 1 -2.1278 0 1.0639 1.0639 0 1 1 2.1278 0z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m7.9012 0.008034c-0.2434 0.046493-0.4366 0.28375-0.4322 0.53196v0.6317c-3.3628 0.2615-6.0392 2.9292-6.317 6.2837h-0.53196c-0.033035-0.00319-0.066707-0.00319-0.099742 0-0.27869 0.025321-0.52481 0.31938-0.49871 0.59845 0.02613 0.27908 0.31992 0.49246 0.59845 0.46546h0.53196c0.24742 3.3854 2.932 6.1202 6.317 6.3835v0.53196c-0.0043 0.281 0.2514 0.565 0.532 0.565s0.5359-0.284 0.5319-0.565v-0.53196c3.4071-0.253 6.1181-3.008 6.3501-6.4169h0.5652c0.28058 0.00426 0.53196-0.25089 0.53196-0.53196 0-0.28106-0.25138-0.53594-0.53196-0.53196h-0.5652c-0.293-3.3472-2.987-6.0009-6.3501-6.2505v-0.6317c0.0053-0.31511-0.3226-0.59107-0.6317-0.53197zm-0.46546 3.3247v0.53196c-0.00426 0.28058 0.25089 0.53196 0.53196 0.53196 0.28106 0 0.53594-0.25138 0.53196-0.53196v-0.53196c2.2324 0.2309 3.9734 1.9338 4.2224 4.156h-0.5652c-0.28058-0.00398-0.53196 0.25089-0.53196 0.53196 0 0.28106 0.25138 0.53621 0.53196 0.53196h0.5652c-0.24169 2.2348-1.9832 3.9881-4.2224 4.2224v-0.5652c0.00398-0.28
058-0.25089-0.53196-0.53196-0.53196-0.28106 0-0.53621 0.25138-0.53196 0.53196v0.53196c-2.2127-0.262-3.9286-1.999-4.1559-4.2226h0.53196c0.28058 0.00426 0.53196-0.25089 0.53196-0.53196 0-0.28106-0.25138-0.53594-0.53196-0.53196h-0.49871c0.2686-2.1715 1.9445-3.8688 4.1226-4.1227z"/>
+ <path d="m9.0449 7.9748a1.0639 1.0639 0 0 1 -2.1278 0 1.0639 1.0639 0 1 1 2.1278 0z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkCubicBeziersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CubicBezier.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CubicBezier.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/CubicBezier.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="4" height="4" x="-.0000016357" y="4" class="filled"/>
- <rect width="4" height="4" x="12" y="4" class="filled"/>
- <rect width="12" height="2" x="2" y="5" class="filled"/>
- <path d="m-70 206.5a1.5 1.5 0 1 1 -3 0 1.5 1.5 0 1 1 3 0z" transform="matrix(1.3333 0 0 1.3333 103.33 -269.33)" class="filled"/>
- <path d="m15 14c0-3.314-3.134-6-7-6s-7 2.686-7 6h2.0156c0.2879-2.254 2.4076-4 4.9844-4s4.6965 1.7461 4.9844 4z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="4" height="4" x="-.0000016357" y="4"/>
+ <rect width="4" height="4" x="12" y="4"/>
+ <rect width="12" height="2" x="2" y="5"/>
+ <path d="m-70 206.5a1.5 1.5 0 1 1 -3 0 1.5 1.5 0 1 1 3 0z" transform="matrix(1.3333 0 0 1.3333 103.33 -269.33)"/>
+ <path d="m15 14c0-3.314-3.134-6-7-6s-7 2.686-7 6h2.0156c0.2879-2.254 2.4076-4 4.9844-4s4.6965 1.7461 4.9844 4z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMCharacterDatasvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMCharacterData.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMCharacterData.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMCharacterData.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5313-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.8594 3.6719c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5313-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.873-0.3468-1.6593-0.4688-2.3126-0.4688z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5313-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block"/>
+ <path fill="url(#d)" d="m8.8594 3.6719c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5313-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.873-0.3468-1.6593-0.4688-2.3126-0.4688z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMCommentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMComment.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMComment.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMComment.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#8ae234" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.7986 3.7416c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.218-0.0628c-0.873-0.3467-1.6591-0.4688-2.3124-0.4688z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block"/>
+ <path fill="url(#d)" d="m8.7986 3.7416c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.218-0.0628c-0.873-0.3467-1.6591-0.4688-2.3124-0.4688z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMDocumentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocument.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocument.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocument.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.2791 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69495-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062 0.1
5625h-0.6875v-4.9062z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3308 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69496-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062
0.15625h-0.6875v-4.9062z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.2791 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69495-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062 0.1
5625h-0.6875v-4.9062z" display="block"/>
+ <path fill="url(#d)" d="m4.3308 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69496-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062
0.15625h-0.6875v-4.9062z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMDocumentTypesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocumentType.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocumentType.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMDocumentType.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.2791 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69495-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062 0.1
5625h-0.6875v-4.9062z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3308 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69496-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062
0.15625h-0.6875v-4.9062z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.2791 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69495-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062 0.1
5625h-0.6875v-4.9062z" display="block"/>
+ <path fill="url(#d)" d="m4.3308 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125h2c0.65883 0 1.3832-0.01226 2.0938-0.1875 0.01009-0.0024 0.02121 0.0025 0.03125 0 1.1558-0.28345 1.963-0.96115 2.4375-1.75 0.47865-0.7957 0.65625-1.715 0.65625-2.5625 0-0.86908-0.24254-1.8618-0.9375-2.6562-0.69496-0.79446-1.8527-1.3438-3.5937-1.3438h-2.6875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm1.7813 1.7812h1.0625c0.85144 0 1.4595 0.20476 1.875 0.59375 0.41551 0.38899 0.65625 0.98412 0.65625 1.8125 0 0.70312-0.17815 1.1373-0.3125 1.375-0.29654 0.54626-0.72126 0.82297-1.1875 0.96875s-0.9715 0.15625-1.4062
0.15625h-0.6875v-4.9062z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMNodesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMNode.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMNode.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMNode.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDOMTextNodesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMTextNode.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMTextNode.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DOMTextNode.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.4812 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4687h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.5938 3.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.0312 0.094 0.25002 0.25002 0 0 0 0.0625 0.094 0.25002 0.25002 0 0 0 0.0625 0.031 0.25002 0.25002 0 0 0 0.0937 0.031h1.4062a0.25002 0.25002 0 0 0 0.0626 0 0.25002 0.25002 0 0 0 0.0625 -0.031 0.25002 0.25002 0 0 0 0.0937 -0.094 0.25002 0.25002 0 0 0 0.0313 -0.063 0.25002 0.25002 0 0 0 0 -0.062v-6.4687h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002 0.25002 0 0 0 0 -
0.0625 0.25002 0.25002 0 0 0 -0.032 -0.0625 0.25002 0.25002 0 0 0 -0.093 -0.0938 0.25002 0.25002 0 0 0 -0.063 -0.0312 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.4812 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4687h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.5938 3.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.0312 0.094 0.25002 0.25002 0 0 0 0.0625 0.094 0.25002 0.25002 0 0 0 0.0625 0.031 0.25002 0.25002 0 0 0 0.0937 0.031h1.4062a0.25002 0.25002 0 0 0 0.0626 0 0.25002 0.25002 0 0 0 0.0625 -0.031 0.25002 0.25002 0 0 0 0.0937 -0.094 0.25002 0.25002 0 0 0 0.0313 -0.063 0.25002 0.25002 0 0 0 0 -0.062v-6.4687h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002 0.25002 0 0 0 0 -
0.0625 0.25002 0.25002 0 0 0 -0.032 -0.0625 0.25002 0.25002 0 0 0 -0.093 -0.0938 0.25002 0.25002 0 0 0 -0.063 -0.0312 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDebugsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debug.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debug.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debug.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="#729fcf" d="m6.25 1.25 3.75 3.75-3.75 3.75h-5.6471c-0.33142-0.0138-0.6029-0.3074-0.6029-0.625v-6.25c-3.7e-8 -0.3317 0.21601-0.625 0.63056-0.625z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="#729fcf" d="m6.25 1.25 3.75 3.75-3.75 3.75h-5.6471c-0.33142-0.0138-0.6029-0.3074-0.6029-0.625v-6.25c-3.7e-8 -0.3317 0.21601-0.625 0.63056-0.625z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDebuggersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debugger.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debugger.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Debugger.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m13.929 0.14286-2.393 2.6071c-1.025-1.0575-2.3209-1.7143-3.7503-1.7143-1.3478 0-2.6105 0.58459-3.6071 1.5357l-2.1786-2.3214-0.8214 0.7857 2.25 2.3929c-0.6439 0.8686-1.1039 1.931-1.3572 3.1071-0.1067 0.4957-0.1569 1.0051-0.1785 1.5357h-1.8929v1.1429h1.8929c0.0907 1.1127 0.3795 2.1227 0.8214 3.0357l-1.8214 1.964 0.8214 0.786 1.5714-1.714c1.0873 1.5697 2.7125 2.5714 4.5 2.5714 1.8529 0 3.5198-1.0798 4.6071-2.75l1.8214 1.9643 0.82143-0.75-2.1071-2.2857c0.38387-0.85846 0.66652-1.7971 0.75-2.8214h2.3214v-1.1429h-2.3214c-0.022-0.5309-0.108-1.0403-0.215-1.536-0.143-0.6646-0.366-1.2799-0.643-1.8571-0.18-0.3766-0.342-0.742-0.571-1.0715l2.5-2.6785-0.821-0.78574zm-10.786 6.3928h4.0714v8c-2.4374-0.35-4.3214-2.928-4.3214-6.0717 0-0.67366 0.090183-1.3234 0.25-1.9286zm5.5714 0h3.6786c0.16037 0.60612 0.25 1.2537 0.25 1.9286 0 2.9762-1.6802 5.4132-3.9286 5.9643v-7.8929z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m13.929 0.14286-2.393 2.6071c-1.025-1.0575-2.3209-1.7143-3.7503-1.7143-1.3478 0-2.6105 0.58459-3.6071 1.5357l-2.1786-2.3214-0.8214 0.7857 2.25 2.3929c-0.6439 0.8686-1.1039 1.931-1.3572 3.1071-0.1067 0.4957-0.1569 1.0051-0.1785 1.5357h-1.8929v1.1429h1.8929c0.0907 1.1127 0.3795 2.1227 0.8214 3.0357l-1.8214 1.964 0.8214 0.786 1.5714-1.714c1.0873 1.5697 2.7125 2.5714 4.5 2.5714 1.8529 0 3.5198-1.0798 4.6071-2.75l1.8214 1.9643 0.82143-0.75-2.1071-2.2857c0.38387-0.85846 0.66652-1.7971 0.75-2.8214h2.3214v-1.1429h-2.3214c-0.022-0.5309-0.108-1.0403-0.215-1.536-0.143-0.6646-0.366-1.2799-0.643-1.8571-0.18-0.3766-0.342-0.742-0.571-1.0715l2.5-2.6785-0.821-0.78574zm-10.786 6.3928h4.0714v8c-2.4374-0.35-4.3214-2.928-4.3214-6.0717 0-0.67366 0.090183-1.3234 0.25-1.9286zm5.5714 0h3.6786c0.16037 0.60612 0.25 1.2537 0.25 1.9286 0 2.9762-1.6802 5.4132-3.9286 5.9643v-7.8929z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDisclosureTrianglessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DisclosureTriangles.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DisclosureTriangles.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DisclosureTriangles.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="utf-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 13 13">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 13 13">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDockBottomsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockBottom.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockBottom.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockBottom.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 14">
- <path d="m2.2812 1c-0.6878 0.0556-1.2842 0.5951-1.2812 1.1875v9.625c-0.00205 0.03747-0.00205 0.05628 0 0.09375v1.094h1.1875 0.21875 11.188 0.125 1.281v-0.969c0.0082-0.07477 0.0082-0.14398 0-0.21875v-9.625c0-0.6277-0.674-1.1869-1.406-1.187h-11.188c-0.0434-0.00176-0.0811-0.00176-0.1248 0zm5.5938 1.0312h0.625 0.03125c0.73923 0 1 0.065018 1 0.8125v1.3125l1.875-1.9062c0.13155-0.1296 0.31657-0.19888 0.5-0.21875 0.69486-0.1144 1.2028 0.95674 0.6875 1.4375l-1.875 1.875h1.2812c0.65064 0 0.8125 0.33402 0.8125 0.96875v0.6875h-0.75l-0.062-0.0001h-3.1875-0.0625c-0.0172 0.0005-0.0453 0.0005-0.0625 0h-0.0625-0.75v-0.65625c-0.0021-0.0345-0.0021-0.0593 0-0.0938-0.0108-0.0772-0.0108-0.1416 0-0.2188v-3.1875-0.0625-0.75zm-4.875 5.9688h10v3h-10v-3z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path d="m2.2812 1c-0.6878 0.0556-1.2842 0.5951-1.2812 1.1875v9.625c-0.00205 0.03747-0.00205 0.05628 0 0.09375v1.094h1.1875 0.21875 11.188 0.125 1.281v-0.969c0.0082-0.07477 0.0082-0.14398 0-0.21875v-9.625c0-0.6277-0.674-1.1869-1.406-1.187h-11.188c-0.0434-0.00176-0.0811-0.00176-0.1248 0zm5.5938 1.0312h0.625 0.03125c0.73923 0 1 0.065018 1 0.8125v1.3125l1.875-1.9062c0.13155-0.1296 0.31657-0.19888 0.5-0.21875 0.69486-0.1144 1.2028 0.95674 0.6875 1.4375l-1.875 1.875h1.2812c0.65064 0 0.8125 0.33402 0.8125 0.96875v0.6875h-0.75l-0.062-0.0001h-3.1875-0.0625c-0.0172 0.0005-0.0453 0.0005-0.0625 0h-0.0625-0.75v-0.65625c-0.0021-0.0345-0.0021-0.0593 0-0.0938-0.0108-0.0772-0.0108-0.1416 0-0.2188v-3.1875-0.0625-0.75zm-4.875 5.9688h10v3h-10v-3z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDockRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DockRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 14">
- <path d="m2.2812 1c-0.6878 0.0556-1.2842 0.5951-1.2812 1.1875v9.625c-0.00205 0.03747-0.00205 0.05628 0 0.09375v1.094h1.1875 0.21875 11.188 0.125 1.281v-0.969c0.0082-0.07477 0.0082-0.14398 0-0.21875v-9.625c0-0.6277-0.674-1.1869-1.406-1.187h-11.188c-0.0434-0.00176-0.0811-0.00176-0.1248 0zm1.7188 2h0.75 0.09375 3.1875 0.0625c0.017326-0.0005328 0.045174-0.0005328 0.0625 0h0.0626 0.7812v0.6562c0.0021 0.0347 0.0021 0.0592 0 0.0938 0.0108 0.0775 0.0108 0.1725 0 0.25v3.1562 0.0938 0.75h-0.6562-0.0313c-0.74378 0-1-0.093119-1-0.84375v-1.2812l-1.875 1.875c-0.1324 0.1301-0.3154 0.23-0.5 0.25-0.6991 0.1149-1.2373-0.9547-0.7187-1.4375l1.9062-1.9063h-1.2812c-0.6547 0-0.8438-0.3313-0.8438-0.9687v-0.6875zm6 0h3v8h-3v-8z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path d="m2.2812 1c-0.6878 0.0556-1.2842 0.5951-1.2812 1.1875v9.625c-0.00205 0.03747-0.00205 0.05628 0 0.09375v1.094h1.1875 0.21875 11.188 0.125 1.281v-0.969c0.0082-0.07477 0.0082-0.14398 0-0.21875v-9.625c0-0.6277-0.674-1.1869-1.406-1.187h-11.188c-0.0434-0.00176-0.0811-0.00176-0.1248 0zm1.7188 2h0.75 0.09375 3.1875 0.0625c0.017326-0.0005328 0.045174-0.0005328 0.0625 0h0.0626 0.7812v0.6562c0.0021 0.0347 0.0021 0.0592 0 0.0938 0.0108 0.0775 0.0108 0.1725 0 0.25v3.1562 0.0938 0.75h-0.6562-0.0313c-0.74378 0-1-0.093119-1-0.84375v-1.2812l-1.875 1.875c-0.1324 0.1301-0.3154 0.23-0.5 0.25-0.6991 0.1149-1.2373-0.9547-0.7187-1.4375l1.9062-1.9063h-1.2812c-0.6547 0-0.8438-0.3313-0.8438-0.9687v-0.6875zm6 0h3v8h-3v-8z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkDownloadArrowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DownloadArrow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DownloadArrow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/DownloadArrow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.3438 9c-0.10481 0.041893-0.19456 0.12043-0.25 0.21875l-1 1.5c-0.1172 0.134-0.0938 0.211-0.0938 0.5-0.0013 0.021-0.0013 0.041 0 0.062v3.719h10v-3.688-0.062c0-0.37949 0.03493-0.39156-0.09375-0.53125l-1-1.5c-0.105-0.1611-0.31-0.2506-0.5-0.219-0.327 0.0631-0.506 0.5098-0.312 0.7812l0.812 1.2188h-7.8122l0.8124-1.2188c0.2295-0.3226-0.1109-0.8544-0.5-0.7812-0.0208-0.0013-0.0416-0.0013-0.0624 0zm2 3.4375c0.0208-0.001 0.0417-0.001 0.0625 0 0.29096-0.0556 0.59898 0.20383 0.59375 0.5v0.062h2v-0.062c-0.004-0.26416 0.23582-0.5 0.5-0.5s0.50373 0.23584 0.5 0.5v0.062c0 0.54535-0.45465 1-1 1h-2c-0.5454 0-1-0.455-1-1v-0.0625c-0.0108-0.21706 0.13723-0.43234 0.34375-0.5z" class="filled"/>
- <path d="m7 1v5.5625l-1.2812-1.2813c-0.1882-0.1881-0.4535-0.2812-0.7188-0.2812h-1v1c0.00001 0.2653 0.0931 0.53058 0.28125 0.71875l3 3 0.2813 0.2812h0.875l0.28125-0.28125 3-3c0.188-0.1882 0.281-0.4535 0.281-0.7188v-1h-1c-0.2653 0.00001-0.53059 0.0931-0.71875 0.28125l-1.281 1.2813v-5.5625z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.3438 9c-0.10481 0.041893-0.19456 0.12043-0.25 0.21875l-1 1.5c-0.1172 0.134-0.0938 0.211-0.0938 0.5-0.0013 0.021-0.0013 0.041 0 0.062v3.719h10v-3.688-0.062c0-0.37949 0.03493-0.39156-0.09375-0.53125l-1-1.5c-0.105-0.1611-0.31-0.2506-0.5-0.219-0.327 0.0631-0.506 0.5098-0.312 0.7812l0.812 1.2188h-7.8122l0.8124-1.2188c0.2295-0.3226-0.1109-0.8544-0.5-0.7812-0.0208-0.0013-0.0416-0.0013-0.0624 0zm2 3.4375c0.0208-0.001 0.0417-0.001 0.0625 0 0.29096-0.0556 0.59898 0.20383 0.59375 0.5v0.062h2v-0.062c-0.004-0.26416 0.23582-0.5 0.5-0.5s0.50373 0.23584 0.5 0.5v0.062c0 0.54535-0.45465 1-1 1h-2c-0.5454 0-1-0.455-1-1v-0.0625c-0.0108-0.21706 0.13723-0.43234 0.34375-0.5z"/>
+ <path d="m7 1v5.5625l-1.2812-1.2813c-0.1882-0.1881-0.4535-0.2812-0.7188-0.2812h-1v1c0.00001 0.2653 0.0931 0.53058 0.28125 0.71875l3 3 0.2813 0.2812h0.875l0.28125-0.28125 3-3c0.188-0.1882 0.281-0.4535 0.281-0.7188v-1h-1c-0.2653 0.00001-0.53059 0.0931-0.71875 0.28125l-1.281 1.2813v-5.5625z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkElementssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Elements.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Elements.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Elements.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m6.0122 2v4.0122h1.6049v1.6049h-3.5745-0.40122v0.40122 1.9696h-1.6413v3.9757h4.0122v-3.9757h-1.5684v-1.5684h7.1854v1.5684h-1.6049v4.0122h3.976v-4.0122h-1.5684v-1.9696-0.40122h-0.40122-3.6109v-1.6049h1.6049v-4.0122h-4.0122z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m6.0122 2v4.0122h1.6049v1.6049h-3.5745-0.40122v0.40122 1.9696h-1.6413v3.9757h4.0122v-3.9757h-1.5684v-1.5684h7.1854v1.5684h-1.6049v4.0122h3.976v-4.0122h-1.5684v-1.9696-0.40122h-0.40122-3.6109v-1.6049h1.6049v-4.0122h-4.0122z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Error.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Error.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Error.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="#ef2929" d="m5 0c-2.7647 0-5 2.2353-5 5s2.2353 5 5 5 5-2.2353 5-5-2.2353-5-5-5zm-2.8571 4.2857h5.7143v1.4286h-5.7143z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="#ef2929" d="m5 0c-2.7647 0-5 2.2353-5 5s2.2353 5 5 5 5-2.2353 5-5-2.2353-5-5-5zm-2.8571 4.2857h5.7143v1.4286h-5.7143z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Errors.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Errors.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Errors.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m8 2c-3.3176 0-6 2.6824-6 6 0 3.318 2.6824 6 6 6s6-2.6824 6-6-2.6824-6-6-6zm-3.4286 5.1429h6.8571v1.7143h-6.8571z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m8 2c-3.3176 0-6 2.6824-6 6 0 3.318 2.6824 6 6 6s6-2.6824 6-6-2.6824-6-6-6zm-3.4286 5.1429h6.8571v1.7143h-6.8571z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkErrorsEnabledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ErrorsEnabled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ErrorsEnabled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ErrorsEnabled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="#c00" d="m8 2c-3.3176 0-6 2.6824-6 6 0 3.318 2.6824 6 6 6s6-2.6824 6-6-2.6824-6-6-6zm-3.4286 5.1429h6.8571v1.7143h-6.8571z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="#c00" d="m8 2c-3.3176 0-6 2.6824-6 6 0 3.318 2.6824 6 6 6s6-2.6824 6-6-2.6824-6-6-6zm-3.4286 5.1429h6.8571v1.7143h-6.8571z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkEventListenersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/EventListener.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/EventListener.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/EventListener.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#ce5c00" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#fedba8" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000652 0.02085 0.000652 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000652 0.02085 0.000652 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkExceptionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Exception.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Exception.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Exception.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#204a87" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#bdd2e9" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m3.1218 5.647a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v6.4063a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h4.1562a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0312a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.7812v-1.1875h2.4688a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0625a0.25002 0.25002 0 0 0 -0.03125 -0.
0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.4688v-1.0938h2.7812a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0313a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-4.1562a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0zm4.8125 1.9375a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.0625l1.5 2.1562-1.4062 2.0312a0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0
625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.2188a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.71875-1.125 0.8125 1.1562a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.3125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625l-1.5312-2.0312 1.4688-2.125a0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.06
25 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375l-0.781 1.2499-0.8124-1.25a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m3.1736 4.6166a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v6.4062a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h4.1562a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0312a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.7812v-1.1875h2.4688a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0625a0.25002 0.25002 0 0 0 -0.03125
-0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.4688v-1.0938h2.7812a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0313a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-4.1562a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0zm4.8125 1.9375a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.0625l1.5 2.1562-1.4062 2.0312a0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0
0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.2188a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.71875-1.125 0.8125 1.1562a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.3125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625l-1.5312-2.0312 1.4688-2.125a0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -
0.0625 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375l-0.78125 1.25-0.8125-1.25a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m3.1218 5.647a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v6.4063a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h4.1562a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0312a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.7812v-1.1875h2.4688a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0625a0.25002 0.25002 0 0 0 -0.03125 -0.
0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.4688v-1.0938h2.7812a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0313a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-4.1562a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0zm4.8125 1.9375a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.0625l1.5 2.1562-1.4062 2.0312a0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0
625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.2188a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.71875-1.125 0.8125 1.1562a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.3125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625l-1.5312-2.0312 1.4688-2.125a0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.06
25 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375l-0.781 1.2499-0.8124-1.25a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m3.1736 4.6166a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v6.4062a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h4.1562a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0312a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.7812v-1.1875h2.4688a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0625a0.25002 0.25002 0 0 0 -0.03125
-0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-2.4688v-1.0938h2.7812a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125v-1.0313a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-4.1562a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0zm4.8125 1.9375a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.0625l1.5 2.1562-1.4062 2.0312a0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0
0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.2188a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.71875-1.125 0.8125 1.1562a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h1.3125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625l-1.5312-2.0312 1.4688-2.125a0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -
0.0625 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375l-0.78125 1.25-0.8125-1.25a0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.25a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkEyesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Eye.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Eye.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Eye.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 11">
- <path d="m8 0.5c-3.6819 0-6.6562 5-6.6562 5s2.9744 5 6.6562 5c3.6819 0 6.6562-5 6.6562-5s-2.9744-5-6.6562-5zm0 1.6562c3.2217 0 5 3.3438 5 3.3438s-1.7783 3.3438-5 3.3438-5-3.3438-5-3.3438 1.7783-3.3438 5-3.3438z" class="filled"/>
- <path d="m8 3c-1.3807 0-2.5 1.1193-2.5 2.5s1.1193 2.5 2.5 2.5 2.5-1.1193 2.5-2.5-1.1193-2.5-2.5-2.5zm0 1.2812c0.6561 0 1.1875 0.5399 1.1875 1.2188s-0.5314 1.25-1.1875 1.25-1.1875-0.5711-1.1875-1.25 0.5314-1.2188 1.1875-1.2188z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 11">
+ <path d="m8 0.5c-3.6819 0-6.6562 5-6.6562 5s2.9744 5 6.6562 5c3.6819 0 6.6562-5 6.6562-5s-2.9744-5-6.6562-5zm0 1.6562c3.2217 0 5 3.3438 5 3.3438s-1.7783 3.3438-5 3.3438-5-3.3438-5-3.3438 1.7783-3.3438 5-3.3438z"/>
+ <path d="m8 3c-1.3807 0-2.5 1.1193-2.5 2.5s1.1193 2.5 2.5 2.5 2.5-1.1193 2.5-2.5-1.1193-2.5-2.5-2.5zm0 1.2812c0.6561 0 1.1875 0.5399 1.1875 1.2188s-0.5314 1.25-1.1875 1.25-1.1875-0.5711-1.1875-1.25 0.5314-1.2188 1.1875-1.2188z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFilterFieldGlyphsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FilterFieldGlyph.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FilterFieldGlyph.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FilterFieldGlyph.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path fill="#bebebe" d="m1.5 1.3273v0.71875 0.0625c-0.001 0.13652 0.0388 0.2562 0.125 0.375l4 5.4687c0.062145 0.08767 0.14938 0.16242 0.25 0.21875v2.5016 1l1.25-1v-2.5016c0.1006-0.0563 0.1879-0.131 0.25-0.2187l4-5.4687c0.08625-0.1188 0.12631-0.23848 0.125-0.375v-0.0625-0.71875z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path fill="#bebebe" d="m1.5 1.3273v0.71875 0.0625c-0.001 0.13652 0.0388 0.2562 0.125 0.375l4 5.4687c0.062145 0.08767 0.14938 0.16242 0.25 0.21875v2.5016 1l1.25-1v-2.5016c0.1006-0.0563 0.1879-0.131 0.25-0.2187l4-5.4687c0.08625-0.1188 0.12631-0.23848 0.125-0.375v-0.0625-0.71875z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFloatLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,13 +1,13 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width=".66667" height="6.6667" x="7.3333" y="4.6665" class="filled"/>
- <rect width="6.6667" height=".66659" x="1.3333" y="4.6666" class="filled"/>
- <rect width="6.6667" height=".66659" x="1.3333" y="10.667" class="filled"/>
- <rect width=".66667" height="6.6667" x="1.3333" y="4.6665" class="filled"/>
- <rect width="5.3333" height="1.3333" x="9.3333" y="4.6665" class="filled"/>
- <rect width="5.3333" height="1.3333" x="9.3333" y="7.3332" class="filled"/>
- <rect width="5.3333" height="1.3333" x="9.3333" y="9.9998" class="filled"/>
- <rect width="13.333" height="1.3333" x="1.3333" y="1.9999" class="filled"/>
- <rect width="13.34" height="1.3333" x="1.3277" y="12.667" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width=".66667" height="6.6667" x="7.3333" y="4.6665"/>
+ <rect width="6.6667" height=".66659" x="1.3333" y="4.6666"/>
+ <rect width="6.6667" height=".66659" x="1.3333" y="10.667"/>
+ <rect width=".66667" height="6.6667" x="1.3333" y="4.6665"/>
+ <rect width="5.3333" height="1.3333" x="9.3333" y="4.6665"/>
+ <rect width="5.3333" height="1.3333" x="9.3333" y="7.3332"/>
+ <rect width="5.3333" height="1.3333" x="9.3333" y="9.9998"/>
+ <rect width="13.333" height="1.3333" x="1.3333" y="1.9999"/>
+ <rect width="13.34" height="1.3333" x="1.3277" y="12.667"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFloatRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FloatRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,13 +1,13 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="13.333" height="1.3333" x="1.3333" y="1.9998" class="filled"/>
- <rect width="5.3333" height="1.3333" x="1.3333" y="4.6665" class="filled"/>
- <rect width="5.3333" height="1.3333" x="1.3333" y="7.3332" class="filled"/>
- <rect width="5.3333" height="1.3333" x="1.3333" y="9.9998" class="filled"/>
- <rect width="13.34" height="1.3333" x="1.3277" y="12.667" class="filled"/>
- <rect width=".66667" height="6.6667" x="14" y="4.6665" class="filled"/>
- <rect width="6.6667" height=".66659" x="8" y="4.6666" class="filled"/>
- <rect width="6.6667" height=".66659" x="8" y="10.667" class="filled"/>
- <rect width=".66667" height="6.6667" x="8" y="4.6665" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="13.333" height="1.3333" x="1.3333" y="1.9998"/>
+ <rect width="5.3333" height="1.3333" x="1.3333" y="4.6665"/>
+ <rect width="5.3333" height="1.3333" x="1.3333" y="7.3332"/>
+ <rect width="5.3333" height="1.3333" x="1.3333" y="9.9998"/>
+ <rect width="13.34" height="1.3333" x="1.3277" y="12.667"/>
+ <rect width=".66667" height="6.6667" x="14" y="4.6665"/>
+ <rect width="6.6667" height=".66659" x="8" y="4.6666"/>
+ <rect width="6.6667" height=".66659" x="8" y="10.667"/>
+ <rect width=".66667" height="6.6667" x="8" y="4.6665"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFontStyleItalicsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleItalic.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleItalic.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleItalic.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.5 3v2h6c0.42816 0 0.59383 0.26733 0.46875 0.71875l-0.344 1.2812h-5.25c-1.8385 0-3.1251 1.3524-3.5 2.75-0.1874 0.699-0.1622 1.479 0.25 2.156 0.4122 0.678 1.248 1.094 2.1562 1.094h6 0.75l0.21875-0.71875 1.6562-6c0.435-1.5687-0.726-3.2812-2.406-3.2812h-6zm0.875 6h4.687l-0.562 2h-5.2188c-0.3978 0-0.4245-0.084-0.4687-0.156-0.0442-0.073-0.0808-0.293 0-0.594 0.1616-0.6024 0.7178-1.25 1.5625-1.25z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.5 3v2h6c0.42816 0 0.59383 0.26733 0.46875 0.71875l-0.344 1.2812h-5.25c-1.8385 0-3.1251 1.3524-3.5 2.75-0.1874 0.699-0.1622 1.479 0.25 2.156 0.4122 0.678 1.248 1.094 2.1562 1.094h6 0.75l0.21875-0.71875 1.6562-6c0.435-1.5687-0.726-3.2812-2.406-3.2812h-6zm0.875 6h4.687l-0.562 2h-5.2188c-0.3978 0-0.4245-0.084-0.4687-0.156-0.0442-0.073-0.0808-0.293 0-0.594 0.1616-0.6024 0.7178-1.25 1.5625-1.25z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFontStyleNormalsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleNormal.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleNormal.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontStyleNormal.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4 3v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3106-0.75 2.0312 0.0064 0.721 0.2689 1.453 0.7812 2.031 0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.11-0.7188-0.281-0.1518-0.172-0.2787-0.44-0.2812-0.719-0.0025-0.2794 0.1047-0.5535 0.25-0.7188 0.1453-0.1652 0.3276-0.2812 0.75-0.2812z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4 3v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3106-0.75 2.0312 0.0064 0.721 0.2689 1.453 0.7812 2.031 0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.11-0.7188-0.281-0.1518-0.172-0.2787-0.44-0.2812-0.719-0.0025-0.2794 0.1047-0.5535 0.25-0.7188 0.1453-0.1652 0.3276-0.2812 0.75-0.2812z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFontVariantSmallCapssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontVariantSmallCaps.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontVariantSmallCaps.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/FontVariantSmallCaps.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.0883 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z" class="filled"/>
- <path d="m9.9413 5.5v7h3.0406c0.65735 0 1.2479-0.26693 1.6188-0.67812 0.37082-0.4112 0.53191-0.93246 0.525-1.4438-0.007-0.51129-0.20014-1.0172-0.56875-1.4219-0.14324-0.15727-0.32798-0.28606-0.525-0.39375 0.16764-0.3207 0.3536-0.63549 0.35-0.98437-0.0052-0.50368-0.16425-1.0199-0.525-1.4219-0.361-0.4019-0.94-0.6561-1.575-0.6561zm1.4 1.4h0.94062c0.28177 0 0.41831 0.077986 0.525 0.19687 0.10669 0.11889 0.17303 0.31227 0.175 0.50313 0.0018 0.19085-0.05171 0.36738-0.15312 0.48125-0.1014 0.11387-0.24544 0.19688-0.54688 0.19688h-0.94062zm0 2.7781h1.6406c0.29488 0 0.43357 0.09436 0.54688 0.21875 0.1133 0.12439 0.19425 0.30895 0.19688 0.50312 0.0027 0.19418-0.06869 0.36335-0.175 0.48125-0.107 0.118-0.248 0.219-0.569 0.219h-1.6406z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.0883 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z"/>
+ <path d="m9.9413 5.5v7h3.0406c0.65735 0 1.2479-0.26693 1.6188-0.67812 0.37082-0.4112 0.53191-0.93246 0.525-1.4438-0.007-0.51129-0.20014-1.0172-0.56875-1.4219-0.14324-0.15727-0.32798-0.28606-0.525-0.39375 0.16764-0.3207 0.3536-0.63549 0.35-0.98437-0.0052-0.50368-0.16425-1.0199-0.525-1.4219-0.361-0.4019-0.94-0.6561-1.575-0.6561zm1.4 1.4h0.94062c0.28177 0 0.41831 0.077986 0.525 0.19687 0.10669 0.11889 0.17303 0.31227 0.175 0.50313 0.0018 0.19085-0.05171 0.36738-0.15312 0.48125-0.1014 0.11387-0.24544 0.19688-0.54688 0.19688h-0.94062zm0 2.7781h1.6406c0.29488 0 0.43357 0.09436 0.54688 0.21875 0.1133 0.12439 0.19425 0.30895 0.19688 0.50312 0.0027 0.19418-0.06869 0.36335-0.175 0.48125-0.107 0.118-0.248 0.219-0.569 0.219h-1.6406z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkFunctionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Function.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Function.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Function.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#8ae234" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m9.0593 4.8342c-1.0619 0-1.8016 0.3977-2.25 0.875-0.44838 0.4773-0.61719 1.005-0.6875 1.3438l-0.0625 0.25h-0.71875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375l-0.1875 1.0938a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.125 0.15625 0.25002 0.25002 0 0 0 0.125 0.03125h0.59375l-0.84375 4.1563a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.84375-4.2813h1.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0
0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.21875-1.0938a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.7812l0.03125-0.15625c0.037755-0.19297 0.14732-0.34648 0.34375-0.46875 0.19642-0.12227 0.4762-0.21875 0.8125-0.21875 0.30479 0 0.6559 0.064823 0.78125 0.09375l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125l0.40625-1a0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125l-0.1875-0.0625c-0.673-0.2163-1.1307-0.2185-1.4367-0.2185z" displ
ay="block" class="filled"/>
- <path fill="url(#d)" d="m9.1111 3.8039c-1.0619 0-1.8016 0.3977-2.25 0.875-0.44838 0.4773-0.61719 1.005-0.6875 1.3438l-0.0625 0.25h-0.71875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375l-0.1875 1.0938a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.125 0.15625 0.25002 0.25002 0 0 0 0.125 0.03125h0.59375l-0.84375 4.1563a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.84375-4.2813h1.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0
0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.2191-1.0941a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.7812l0.03125-0.15625c0.037755-0.19297 0.14732-0.34648 0.34375-0.46875 0.19642-0.12227 0.4762-0.21875 0.8125-0.21875 0.30479 0 0.6559 0.064823 0.78125 0.09375l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125l0.40625-1a0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125l-0.1875-0.0625c-0.6732-0.2164-1.1309-0.2186-1.4369-0.2186z" di
splay="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m9.0593 4.8342c-1.0619 0-1.8016 0.3977-2.25 0.875-0.44838 0.4773-0.61719 1.005-0.6875 1.3438l-0.0625 0.25h-0.71875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375l-0.1875 1.0938a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.125 0.15625 0.25002 0.25002 0 0 0 0.125 0.03125h0.59375l-0.84375 4.1563a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.84375-4.2813h1.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0
0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.21875-1.0938a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.7812l0.03125-0.15625c0.037755-0.19297 0.14732-0.34648 0.34375-0.46875 0.19642-0.12227 0.4762-0.21875 0.8125-0.21875 0.30479 0 0.6559 0.064823 0.78125 0.09375l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125l0.40625-1a0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125l-0.1875-0.0625c-0.673-0.2163-1.1307-0.2185-1.4367-0.2185z" displ
ay="block"/>
+ <path fill="url(#d)" d="m9.1111 3.8039c-1.0619 0-1.8016 0.3977-2.25 0.875-0.44838 0.4773-0.61719 1.005-0.6875 1.3438l-0.0625 0.25h-0.71875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375l-0.1875 1.0938a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.125 0.15625 0.25002 0.25002 0 0 0 0.125 0.03125h0.59375l-0.84375 4.1563a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.84375-4.2813h1.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0
0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.2191-1.0941a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.7812l0.03125-0.15625c0.037755-0.19297 0.14732-0.34648 0.34375-0.46875 0.19642-0.12227 0.4762-0.21875 0.8125-0.21875 0.30479 0 0.6559 0.064823 0.78125 0.09375l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125l0.40625-1a0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125l-0.1875-0.0625c-0.6732-0.2164-1.1309-0.2186-1.4369-0.2186z" di
splay="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkGearsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Gear.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Gear.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Gear.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 15 15">
- <path d="m7.5 0.50005c-0.22065 0-0.44081 0.0113-0.65625 0.0312l-0.4063 2.0938c-0.3345 0.0733-0.6631 0.1759-0.9687 0.3125l-1.5313-1.4687c-0.3886 0.2301-0.7269 0.514-1.0625 0.8124l0.9062 1.9063c-0.2224 0.249-0.4242 0.5225-0.5937 0.8125l-2.0937-0.2812c-0.17777 0.4087-0.30877 0.8363-0.4063 1.2812l1.8438 1c-0.0171 0.16809-0.0312 0.3274-0.0312 0.5s0.0142 0.33191 0.0312 0.5l-1.8438 1c0.0975 0.4449 0.22853 0.8725 0.4063 1.281l2.0937-0.281c0.1695 0.29 0.37133 0.56351 0.59375 0.8125l-0.9062 1.907c0.33555 0.29842 0.67387 0.58239 1.0625 0.8125l1.5313-1.47c0.3057 0.13661 0.63429 0.23916 0.96875 0.3125l0.40625 2.0938c0.21544 0.02 0.4356 0.0312 0.65625 0.0312s0.44081-0.0113 0.65625-0.0312l0.4062-2.093c0.33446-0.0733 0.66305-0.17589 0.96875-0.3125l1.5312 1.4688c0.38863-0.23011 0.72695-0.51408 1.0625-0.8125l-0.905-1.906c0.222-0.248 0.424-0.522 0.593-0.812l2.0938 0.28125c0.178-0.4085 0.309-0.8361 0.406-1.281l-1.843-1c0.0171-0.16809 0.0312-0.3274 0.0312-0.5s-0.0142-0.33191-0.0312-0.5l
1.843-1c-0.097-0.4449-0.228-0.8725-0.406-1.2812l-2.094 0.2812c-0.169-0.29-0.371-0.5635-0.593-0.8125l0.906-1.9063c-0.336-0.2984-0.674-0.5823-1.063-0.8124l-1.5308 1.4687c-0.3056-0.1366-0.6342-0.2392-0.9687-0.3125l-0.4063-2.0938c-0.2154-0.01995-0.4356-0.03115-0.6562-0.03115zm0 4c1.6568 0 3 1.3432 3 3s-1.3432 3-3 3-3-1.3432-3-3 1.3432-3 3-3z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path d="m7.5 0.50005c-0.22065 0-0.44081 0.0113-0.65625 0.0312l-0.4063 2.0938c-0.3345 0.0733-0.6631 0.1759-0.9687 0.3125l-1.5313-1.4687c-0.3886 0.2301-0.7269 0.514-1.0625 0.8124l0.9062 1.9063c-0.2224 0.249-0.4242 0.5225-0.5937 0.8125l-2.0937-0.2812c-0.17777 0.4087-0.30877 0.8363-0.4063 1.2812l1.8438 1c-0.0171 0.16809-0.0312 0.3274-0.0312 0.5s0.0142 0.33191 0.0312 0.5l-1.8438 1c0.0975 0.4449 0.22853 0.8725 0.4063 1.281l2.0937-0.281c0.1695 0.29 0.37133 0.56351 0.59375 0.8125l-0.9062 1.907c0.33555 0.29842 0.67387 0.58239 1.0625 0.8125l1.5313-1.47c0.3057 0.13661 0.63429 0.23916 0.96875 0.3125l0.40625 2.0938c0.21544 0.02 0.4356 0.0312 0.65625 0.0312s0.44081-0.0113 0.65625-0.0312l0.4062-2.093c0.33446-0.0733 0.66305-0.17589 0.96875-0.3125l1.5312 1.4688c0.38863-0.23011 0.72695-0.51408 1.0625-0.8125l-0.905-1.906c0.222-0.248 0.424-0.522 0.593-0.812l2.0938 0.28125c0.178-0.4085 0.309-0.8361 0.406-1.281l-1.843-1c0.0171-0.16809 0.0312-0.3274 0.0312-0.5s-0.0142-0.33191-0.0312-0.5l
1.843-1c-0.097-0.4449-0.228-0.8725-0.406-1.2812l-2.094 0.2812c-0.169-0.29-0.371-0.5635-0.593-0.8125l0.906-1.9063c-0.336-0.2984-0.674-0.5823-1.063-0.8124l-1.5308 1.4687c-0.3056-0.1366-0.6342-0.2392-0.9687-0.3125l-0.4063-2.0938c-0.2154-0.01995-0.4356-0.03115-0.6562-0.03115zm0 4c1.6568 0 3 1.3432 3 3s-1.3432 3-3 3-3-1.3432-3-3 1.3432-3 3-3z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkGoToArrowsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/GoToArrow.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/GoToArrow.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/GoToArrow.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 10 10">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 10 10">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkHierarchicalNavigationItemChevronsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/HierarchicalNavigationItemChevron.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/HierarchicalNavigationItemChevron.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/HierarchicalNavigationItemChevron.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 7 16">
- <path fill="#bebebe" d="m1.073 0c0.1676 0.060453 0.3228 0.19761 0.44003 0.38889l4.4003 6.6667 0.5867 0.9444-0.5867 0.9444-4.4003 6.6666c-0.1641 0.245-0.3929 0.388-0.62336 0.389h-0.03667-0.073338-0.77005v-1-0.16667c-0.042084-0.42 0.056386-0.868 0.25669-1.166l3.7402-5.667-3.7402-5.7222c-0.16299-0.2473-0.25751-0.595-0.25671-0.9445v-0.27778-1.0556h0.69671 0.11001 0.073338 0.11001z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 7 16">
+ <path fill="#bebebe" d="m1.073 0c0.1676 0.060453 0.3228 0.19761 0.44003 0.38889l4.4003 6.6667 0.5867 0.9444-0.5867 0.9444-4.4003 6.6666c-0.1641 0.245-0.3929 0.388-0.62336 0.389h-0.03667-0.073338-0.77005v-1-0.16667c-0.042084-0.42 0.056386-0.868 0.25669-1.166l3.7402-5.667-3.7402-5.7222c-0.16299-0.2473-0.25751-0.595-0.25671-0.9445v-0.27778-1.0556h0.69671 0.11001 0.073338 0.11001z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner1svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner1.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner1.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner1.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="c" cx=".053942" cy="189.15" r="27.33" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-.33324 0.189 -.17767 -.31305 41.83 72.851)">
</span><span class="cx"> <stop stop-color="#bebebe" stop-opacity="0" offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#313131" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m12.617 22.227a6.892 6.8942 60 1 1 9.9262 -4.2869" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m9.2164 14.586a6.8942 6.892 43.694 1 1 6.9021 8.3228" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m12.617 22.227a6.892 6.8942 60 1 1 9.9262 -4.2869" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m9.2164 14.586a6.8942 6.892 43.694 1 1 6.9021 8.3228"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner10svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner10.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner10.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner10.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m22.076 19.335a6.8942 6.892 60 1 1 -4.287 -9.926" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m14.435 22.736a6.892 6.8942 43.694 1 1 8.3228 -6.9021" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m22.076 19.335a6.8942 6.892 60 1 1 -4.287 -9.926" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m14.435 22.736a6.892 6.8942 43.694 1 1 8.3228 -6.9021"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner11svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner11.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner11.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner11.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m19.591 21.997a6.892 6.8942 0 1 1 1.251 -10.739" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m11.274 21.122a6.892 6.8942 73.694 1 1 10.659 -1.816" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m19.591 21.997a6.892 6.8942 0 1 1 1.251 -10.739" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m11.274 21.122a6.892 6.8942 73.694 1 1 10.659 -1.816"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner12svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner12.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner12.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner12.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m16.129 23.056a6.892 6.8942 30 1 1 6.4529 -8.6757" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m9.3642 18.139a6.8942 6.892 13.694 1 1 10.139 3.7567" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m16.129 23.056a6.892 6.8942 30 1 1 6.4529 -8.6757" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m9.3642 18.139a6.8942 6.892 13.694 1 1 10.139 3.7567"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner2svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner2.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner2.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner2.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m9.9545 19.742a6.8942 6.892 0 1 1 10.74 1.251" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m10.83 11.425a6.8942 6.892 73.694 1 1 1.816 10.659" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m9.9545 19.742a6.8942 6.892 0 1 1 10.74 1.251" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m10.83 11.425a6.8942 6.892 73.694 1 1 1.816 10.659"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner3svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner3.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner3.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner3.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m8.8962 16.28a6.8942 6.892 30 1 1 8.6758 6.453" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m13.813 9.515a6.892 6.8942 13.694 1 1 -3.757 10.139" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m8.8962 16.28a6.8942 6.892 30 1 1 8.6758 6.453" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m13.813 9.515a6.892 6.8942 13.694 1 1 -3.757 10.139"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner4svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner4.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner4.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner4.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m9.7252 12.768a6.8942 6.892 60 1 1 4.2869 9.9262" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m17.366 9.3673a6.892 6.8942 43.694 1 1 -8.3229 6.9017" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m9.7252 12.768a6.8942 6.892 60 1 1 4.2869 9.9262" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m17.366 9.3673a6.892 6.8942 43.694 1 1 -8.3229 6.9017"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner5svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner5.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner5.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner5.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m12.21 10.105a6.892 6.8942 0 1 1 -1.251 10.74" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m20.527 10.981a6.892 6.8942 73.694 1 1 -10.659 1.816" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m12.21 10.105a6.892 6.8942 0 1 1 -1.251 10.74" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m20.527 10.981a6.892 6.8942 73.694 1 1 -10.659 1.816"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner6svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner6.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner6.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner6.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m15.672 9.0471a6.892 6.8942 30 1 1 -6.4531 8.6759" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m22.437 13.964a6.8942 6.892 13.694 1 1 -10.139 -3.757" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m15.672 9.0471a6.892 6.8942 30 1 1 -6.4531 8.6759" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m22.437 13.964a6.8942 6.892 13.694 1 1 -10.139 -3.757"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner7svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner7.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner7.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner7.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m19.184 9.876a6.892 6.8942 60 1 1 -9.9259 4.287" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m22.585 17.517a6.8942 6.892 43.694 1 1 -6.902 -8.3231" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m19.184 9.876a6.892 6.8942 60 1 1 -9.9259 4.287" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m22.585 17.517a6.8942 6.892 43.694 1 1 -6.902 -8.3231"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner8svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner8.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner8.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner8.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m21.847 12.361a6.8942 6.892 0 1 1 -10.74 -1.251" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m20.971 20.678a6.8942 6.892 73.694 1 1 -1.816 -10.659" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m21.847 12.361a6.8942 6.892 0 1 1 -10.74 -1.251" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m20.971 20.678a6.8942 6.892 73.694 1 1 -1.816 -10.659"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIndeterminateProgressSpinner9svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner9.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner9.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IndeterminateProgressSpinner9.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 32 32">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="a" cx="304.94" cy="22.665" r="10.046" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5437 0 0 1.5437 -454.72 -16.47)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="lines">@@ -20,7 +20,7 @@
</span><span class="cx"> <stop stop-color="#fff" offset="1"/>
</span><span class="cx"> </radialGradient>
</span><span class="cx"> </defs>
</span><del>- <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block" class="filled"/>
- <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m22.905 15.823a6.8942 6.892 30 1 1 -8.676 -6.4532" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m17.988 22.588a6.892 6.8942 13.694 1 1 3.7567 -10.139" class="stroked"/>
</del><ins>+ <path fill="url(#a)" stroke="#fff" stroke-width="3.355" d="m30.323 16a14.323 14.323 0 1 1 -28.645 0 14.323 14.323 0 1 1 28.645 0z" display="block"/>
+ <path fill="none" stroke="url(#b)" stroke-width="5.5916" d="m22.905 15.823a6.8942 6.892 30 1 1 -8.676 -6.4532" stroke-linecap="round"/>
+ <path fill="none" stroke="url(#c)" stroke-width="5.5916" d="m17.988 22.588a6.892 6.8942 13.694 1 1 3.7567 -10.139"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkInfosvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Info.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Info.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Info.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="none" stroke="#3465a4" stroke-width="1.25" d="m5 0.625c-1.3807 0-2.5 1.1193-2.5 2.5 0 0.9245 0.50388 1.7159 1.25 2.1484v1.6016h2.5v-1.6016c0.74612-0.43255 1.25-1.2239 1.25-2.1484 0-1.3807-1.1193-2.5-2.5-2.5z" class="stroked"/>
- <path fill="none" stroke="#3465a4" stroke-width=".625" d="m3.75 9.6875h2.5" class="stroked"/>
- <path fill="none" stroke="#3465a4" stroke-width=".625" d="m3.125 8.4375h3.75" class="stroked"/>
- <path fill="none" stroke="#729fcf" stroke-width=".625" d="m4.375 3.4375h1.25" class="stroked"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="none" stroke="#3465a4" stroke-width="1.25" d="m5 0.625c-1.3807 0-2.5 1.1193-2.5 2.5 0 0.9245 0.50388 1.7159 1.25 2.1484v1.6016h2.5v-1.6016c0.74612-0.43255 1.25-1.2239 1.25-2.1484 0-1.3807-1.1193-2.5-2.5-2.5z"/>
+ <path fill="none" stroke="#3465a4" stroke-width=".625" d="m3.75 9.6875h2.5"/>
+ <path fill="none" stroke="#3465a4" stroke-width=".625" d="m3.125 8.4375h3.75"/>
+ <path fill="none" stroke="#729fcf" stroke-width=".625" d="m4.375 3.4375h1.25"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIssuessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Issues.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Issues.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Issues.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m7.9481 2.0014c-0.42299-0.023021-0.83571 0.22784-1.1571 0.77978l-5.0308 9.3318c-0.4295 0.776 0.0388 1.887 0.8804 1.887h10.59c0.79022 0 1.5319-0.93323 0.98101-1.8866l-5.0817-9.2815c-0.3209-0.5201-0.7592-0.807-1.1822-0.8301zm0.050308 3.1694c0.43827-0.013845 0.84397 0.39182 0.83009 0.83009v3.1694c0.00563 0.42525-0.37963 0.80493-0.80493 0.80493s-0.81095-0.37968-0.80493-0.80493v-3.1694c-0.0064-0.3755 0.285-0.7345 0.654-0.8049 0.041132-0.011672 0.083271-0.020043 0.12577-0.025114zm0.025154 5.6094c0.44455 0 0.80493 0.36038 0.80493 0.80493s-0.36039 0.80494-0.80493 0.80494c-0.44455 0-0.80493-0.36039-0.80493-0.80494s0.36039-0.80493 0.80493-0.80493z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m7.9481 2.0014c-0.42299-0.023021-0.83571 0.22784-1.1571 0.77978l-5.0308 9.3318c-0.4295 0.776 0.0388 1.887 0.8804 1.887h10.59c0.79022 0 1.5319-0.93323 0.98101-1.8866l-5.0817-9.2815c-0.3209-0.5201-0.7592-0.807-1.1822-0.8301zm0.050308 3.1694c0.43827-0.013845 0.84397 0.39182 0.83009 0.83009v3.1694c0.00563 0.42525-0.37963 0.80493-0.80493 0.80493s-0.81095-0.37968-0.80493-0.80493v-3.1694c-0.0064-0.3755 0.285-0.7345 0.654-0.8049 0.041132-0.011672 0.083271-0.020043 0.12577-0.025114zm0.025154 5.6094c0.44455 0 0.80493 0.36038 0.80493 0.80493s-0.36039 0.80494-0.80493 0.80494c-0.44455 0-0.80493-0.36039-0.80493-0.80494s0.36039-0.80493 0.80493-0.80493z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkIssuesEnabledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IssuesEnabled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IssuesEnabled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/IssuesEnabled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="#f57900" d="m7.9481 2.0014c-0.42299-0.023021-0.83571 0.22784-1.1571 0.77978l-5.0308 9.3318c-0.4295 0.776 0.0388 1.887 0.8804 1.887h10.59c0.79022 0 1.5319-0.93323 0.98101-1.8866l-5.0817-9.2815c-0.3209-0.5201-0.7592-0.807-1.1822-0.8301zm0.050308 3.1694c0.43827-0.013845 0.84397 0.39182 0.83009 0.83009v3.1694c0.00563 0.42525-0.37963 0.80493-0.80493 0.80493s-0.81095-0.37968-0.80493-0.80493v-3.1694c-0.0064-0.3755 0.285-0.7345 0.654-0.8049 0.041132-0.011672 0.083271-0.020043 0.12577-0.025114zm0.025154 5.6094c0.44455 0 0.80493 0.36038 0.80493 0.80493s-0.36039 0.80494-0.80493 0.80494c-0.44455 0-0.80493-0.36039-0.80493-0.80494s0.36039-0.80493 0.80493-0.80493z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="#f57900" d="m7.9481 2.0014c-0.42299-0.023021-0.83571 0.22784-1.1571 0.77978l-5.0308 9.3318c-0.4295 0.776 0.0388 1.887 0.8804 1.887h10.59c0.79022 0 1.5319-0.93323 0.98101-1.8866l-5.0817-9.2815c-0.3209-0.5201-0.7592-0.807-1.1822-0.8301zm0.050308 3.1694c0.43827-0.013845 0.84397 0.39182 0.83009 0.83009v3.1694c0.00563 0.42525-0.37963 0.80493-0.80493 0.80493s-0.81095-0.37968-0.80493-0.80493v-3.1694c-0.0064-0.3755 0.285-0.7345 0.654-0.8049 0.041132-0.011672 0.083271-0.020043 0.12577-0.025114zm0.025154 5.6094c0.44455 0 0.80493 0.36038 0.80493 0.80493s-0.36039 0.80494-0.80493 0.80494c-0.44455 0-0.80493-0.36039-0.80493-0.80494s0.36039-0.80493 0.80493-0.80493z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkLayerBorderssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/LayerBorders.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/LayerBorders.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/LayerBorders.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m1 14.5 3-3h11l-3 3z" class="filled"/>
- <path d="m1 9.5 3-3h11l-3 3z" class="filled"/>
- <path d="m1 4.5 3-3h11l-3 3z" class="filled"/>
- <path fill="#bebebe" d="m4.5569 2.0969-1.8062 1.8062h8.6925l1.8062-1.8062h-8.6925z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m1 14.5 3-3h11l-3 3z"/>
+ <path d="m1 9.5 3-3h11l-3 3z"/>
+ <path d="m1 4.5 3-3h11l-3 3z"/>
+ <path fill="#bebebe" d="m4.5569 2.0969-1.8062 1.8062h8.6925l1.8062-1.8062h-8.6925z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkLockedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Locked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Locked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Locked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 8 10">
- <path fill="hsla(0, 0%, 0%, 0.5)" d="m3.3333 0.66667c-1.0965 0-2 0.90353-2 2v2h-0.66667c-0.3693 0-0.66663 0.2973-0.66663 0.6666v0.35417 3.6458h3.3333 1.3333 3.3334v-3.6458-0.3542c0-0.3693-0.2973-0.6666-0.6667-0.6666h-0.66667v-2c0-1.0965-0.90353-2-2-2h-1.3333zm0 1.3333h1.3333c0.38087 0 0.66667 0.2858 0.66667 0.66667v2h-2.6667v-2c0-0.38087 0.2858-0.66667 0.66667-0.66667z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 8 10">
+ <path fill="hsla(0, 0%, 0%, 0.5)" d="m3.3333 0.66667c-1.0965 0-2 0.90353-2 2v2h-0.66667c-0.3693 0-0.66663 0.2973-0.66663 0.6666v0.35417 3.6458h3.3333 1.3333 3.3334v-3.6458-0.3542c0-0.3693-0.2973-0.6666-0.6667-0.6666h-0.66667v-2c0-1.0965-0.90353-2-2-2h-1.3333zm0 1.3333h1.3333c0.38087 0 0.66667 0.2858 0.66667 0.66667v2h-2.6667v-2c0-0.38087 0.2858-0.66667 0.66667-0.66667z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkLogsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Log.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Log.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Log.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="#bebebe" d="m1 1v8h0.4844c-0.2247-0.2625-0.1955-0.4959 0.0156-0.7656l1.2723-1.2605c-0.1697-0.2926-0.2723-0.6285-0.2723-0.9895 0-1.1068 0.90039-2.0156 2-2.0156s2 0.90884 2 2.0156-0.9004 2.0156-2 2.0156c-0.4046 0-0.7779-0.1178-1.0938-0.3281l-1.3906 1.3281h6c-0.063-0.063-0.1094-0.1539-0.1094-0.25 0-0.1922 0.1516-0.3438 0.3438-0.3438s0.3594 0.1516 0.3594 0.3438c0 0.0961-0.0464 0.187-0.1094 0.25h0.5v-8h-0.5c-0.063 0.063-0.1539 0.1094-0.25 0.1094s-0.1714-0.0464-0.2344-0.1094h-6.0312c-0.063 0.063-0.1383 0.1094-0.2344 0.1094s-0.187-0.0464-0.25-0.1094zm0.75 0.40625c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0
.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-3.7299 0.6016c-0.5561 0-0.99552 0.44808-0.99552 1.0078 0 0.55973 0.43942 1.0078 0.99552 1.0078s0.99552-0.44808 0.99552-1.0078c0-0.55973-0.43942-1.0078-0.99552-1.0078zm-2.7701 0.3984c0.19221 0 0.34375 0.
15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm0 1c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="#bebebe" d="m1 1v8h0.4844c-0.2247-0.2625-0.1955-0.4959 0.0156-0.7656l1.2723-1.2605c-0.1697-0.2926-0.2723-0.6285-0.2723-0.9895 0-1.1068 0.90039-2.0156 2-2.0156s2 0.90884 2 2.0156-0.9004 2.0156-2 2.0156c-0.4046 0-0.7779-0.1178-1.0938-0.3281l-1.3906 1.3281h6c-0.063-0.063-0.1094-0.1539-0.1094-0.25 0-0.1922 0.1516-0.3438 0.3438-0.3438s0.3594 0.1516 0.3594 0.3438c0 0.0961-0.0464 0.187-0.1094 0.25h0.5v-8h-0.5c-0.063 0.063-0.1539 0.1094-0.25 0.1094s-0.1714-0.0464-0.2344-0.1094h-6.0312c-0.063 0.063-0.1383 0.1094-0.2344 0.1094s-0.187-0.0464-0.25-0.1094zm0.75 0.40625c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0
.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-3.7299 0.6016c-0.5561 0-0.99552 0.44808-0.99552 1.0078 0 0.55973 0.43942 1.0078 0.99552 1.0078s0.99552-0.44808 0.99552-1.0078c0-0.55973-0.43942-1.0078-0.99552-1.0078zm-2.7701 0.3984c0.19221 0 0.34375 0.
15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm-6.5 1c0.19221 0 0.34375 0.15154 0.34375 0.34375s-0.15154 0.35938-0.34375 0.35938c-0.1922 0.0001-0.3594-0.1671-0.3594-0.3593s0.1672-0.3438 0.3594-0.3438zm6.5 0c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438zm0 1c0.19221 0 0.35938 0.15154 0.35938 0.34375 0 0.1922-0.1672 0.3594-0.3594 0.3594s-0.3438-0.1672-0.3438-0.3594 0.1516-0.3438 0.3438-0.3438z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkLogssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Logs.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Logs.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Logs.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m2 2v12h0.72656c-0.33695-0.39381-0.29316-0.74388 0.0234-1.1484l1.9084-1.891c-0.2546-0.439-0.4084-0.943-0.4084-1.4844 0-1.6602 1.3506-3.0234 3-3.0234s3 1.3633 3 3.0234c0 1.6602-1.3506 3.0234-3 3.0234-0.6069 0-1.1669-0.17667-1.6406-0.49219l-2.086 1.992h8.9996c-0.09447-0.09447-0.16406-0.23084-0.16406-0.375 0-0.28832 0.22731-0.51562 0.51562-0.51562 0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.14416-0.0696 0.28053-0.16406 0.375h0.75v-12h-0.75c-0.09447 0.09447-0.23084 0.16406-0.375 0.16406s-0.25709-0.0696-0.35156-0.16406h-9.0464c-0.0945 0.0945-0.2074 0.1641-0.3516 0.1641s-0.2805-0.0696-0.375-0.1641zm1.125 0.60938c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c
0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0
.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-5.5948 0.90234c-0.83415 0-1.4933 0.67213-1.4933 1.5117 0 0.83959 0.65914 1.5117 1.4933 1.5117 0.83415 0 1.4933-0.67212 1.4933-1.5117 0-0.8396-0.65913-1.5117-1.4933-1.5117zm-4.1552 0.5977c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm0 1.5c0.28832 0 0.53906 0.22731 0.5
3906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m2 2v12h0.72656c-0.33695-0.39381-0.29316-0.74388 0.0234-1.1484l1.9084-1.891c-0.2546-0.439-0.4084-0.943-0.4084-1.4844 0-1.6602 1.3506-3.0234 3-3.0234s3 1.3633 3 3.0234c0 1.6602-1.3506 3.0234-3 3.0234-0.6069 0-1.1669-0.17667-1.6406-0.49219l-2.086 1.992h8.9996c-0.09447-0.09447-0.16406-0.23084-0.16406-0.375 0-0.28832 0.22731-0.51562 0.51562-0.51562 0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.14416-0.0696 0.28053-0.16406 0.375h0.75v-12h-0.75c-0.09447 0.09447-0.23084 0.16406-0.375 0.16406s-0.25709-0.0696-0.35156-0.16406h-9.0464c-0.0945 0.0945-0.2074 0.1641-0.3516 0.1641s-0.2805-0.0696-0.375-0.1641zm1.125 0.60938c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c
0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0
.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-5.5948 0.90234c-0.83415 0-1.4933 0.67213-1.4933 1.5117 0 0.83959 0.65914 1.5117 1.4933 1.5117 0.83415 0 1.4933-0.67212 1.4933-1.5117 0-0.8396-0.65913-1.5117-1.4933-1.5117zm-4.1552 0.5977c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm-9.75 1.5c0.28832 0 0.51562 0.22731 0.51562 0.51562 0 0.28832-0.22731 0.53906-0.51562 0.53906-0.28832 0-0.53906-0.25075-0.53906-0.53906 0-0.28832 0.25075-0.51562 0.53906-0.51562zm9.75 0c0.28832 0 0.53906 0.22731 0.53906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562zm0 1.5c0.28832 0 0.53906 0.22731 0.5
3906 0.51562 0 0.28832-0.25075 0.53906-0.53906 0.53906-0.28832 0-0.51562-0.25075-0.51562-0.53906 0-0.28832 0.22731-0.51562 0.51562-0.51562z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkMinussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Minus.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Minus.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Minus.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path d="m1 5.5208v1.9584h11v-1.9584" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="m1 5.5208v1.9584h11v-1.9584"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNativesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Native.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Native.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Native.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemCurleyBracessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemCurleyBraces.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemCurleyBraces.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemCurleyBraces.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m3.4301 5.4599c-0.1536 1.1724-0.7677 1.6887-1.4236 1.8004l-0.23726 0.027913v1.4236l0.23726 0.027913c0.23726 0.04187 0.46057 0.13957 0.65596 0.27913 0.86531 0.62805 0.75366 1.7585 0.85135 2.7076 0.26518 2.6099 2.1074 3.0565 2.7495 3.0984l0.23726 0.02791 0.33496-1.4236-0.30705-0.04187c-0.4606-0.056-0.8514-0.349-1.0747-0.684-0.7537-1.158 0.0558-3.3911-1.4934-4.703 1.5352-1.3119 0.7257-3.531 1.4934-4.7034 0.2233-0.3349 0.6141-0.642 1.0746-0.6978l0.3071-0.0419-0.335-1.4096-0.2373 0.014c-0.7397 0.0558-2.4982 0.5443-2.7494 3.196-0.0279 0.3769-0.0419 0.7537-0.0837 1.1026" class="filled"/>
- <path d="m12.486 4.3573c-0.251-2.6378-1.996-3.1402-2.7492-3.196l-0.2373-0.014-0.321 1.4096 0.307 0.0419c0.46057 0.055826 0.8374 0.36287 1.0607 0.69783 0.76761 1.1724-0.04187 3.3915 1.4934 4.7034-1.5492 1.3119-0.7397 3.545-1.4934 4.7034-0.2233 0.33496-0.60013 0.62805-1.0607 0.68387l-0.30705 0.04187 0.321 1.4236 0.23726-0.02791c0.642-0.04187 2.4843-0.48848 2.7495-3.0984 0.0977-0.94905-0.01396-2.0795 0.85135-2.7076 0.19539-0.13957 0.43266-0.23726 0.66992-0.27913l0.2233-0.027913v-1.4236l-0.2233-0.027913c-0.655-0.1129-1.27-0.6292-1.423-1.8016-0.042-0.3489-0.07-0.7257-0.098-1.1026" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m3.4301 5.4599c-0.1536 1.1724-0.7677 1.6887-1.4236 1.8004l-0.23726 0.027913v1.4236l0.23726 0.027913c0.23726 0.04187 0.46057 0.13957 0.65596 0.27913 0.86531 0.62805 0.75366 1.7585 0.85135 2.7076 0.26518 2.6099 2.1074 3.0565 2.7495 3.0984l0.23726 0.02791 0.33496-1.4236-0.30705-0.04187c-0.4606-0.056-0.8514-0.349-1.0747-0.684-0.7537-1.158 0.0558-3.3911-1.4934-4.703 1.5352-1.3119 0.7257-3.531 1.4934-4.7034 0.2233-0.3349 0.6141-0.642 1.0746-0.6978l0.3071-0.0419-0.335-1.4096-0.2373 0.014c-0.7397 0.0558-2.4982 0.5443-2.7494 3.196-0.0279 0.3769-0.0419 0.7537-0.0837 1.1026"/>
+ <path d="m12.486 4.3573c-0.251-2.6378-1.996-3.1402-2.7492-3.196l-0.2373-0.014-0.321 1.4096 0.307 0.0419c0.46057 0.055826 0.8374 0.36287 1.0607 0.69783 0.76761 1.1724-0.04187 3.3915 1.4934 4.7034-1.5492 1.3119-0.7397 3.545-1.4934 4.7034-0.2233 0.33496-0.60013 0.62805-1.0607 0.68387l-0.30705 0.04187 0.321 1.4236 0.23726-0.02791c0.642-0.04187 2.4843-0.48848 2.7495-3.0984 0.0977-0.94905-0.01396-2.0795 0.85135-2.7076 0.19539-0.13957 0.43266-0.23726 0.66992-0.27913l0.2233-0.027913v-1.4236l-0.2233-0.027913c-0.655-0.1129-1.27-0.6292-1.423-1.8016-0.042-0.3489-0.07-0.7257-0.098-1.1026"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemTrashsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTrash.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTrash.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTrash.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m3.5 5v9h9v-9h2v9c0 2-2 2-2 2h-9c-2 0-2-2-2-2v-9zm4 1h1v6h-1zm2 0h1v6h-1zm-4 0h0.99999v6h-0.99999zm-1-6c-2 0-2 2-2 2h-2v2h15v-2h-2c0-2-2-2-2-2h-7zm0 1h7v1h-7v-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m3.5 5v9h9v-9h2v9c0 2-2 2-2 2h-9c-2 0-2-2-2-2v-9zm4 1h1v6h-1zm2 0h1v6h-1zm-4 0h0.99999v6h-0.99999zm-1-6c-2 0-2 2-2 2h-2v2h15v-2h-2c0-2-2-2-2-2h-7zm0 1h7v1h-7v-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNavigationItemTypessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTypes.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTypes.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NavigationItemTypes.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 14">
- <rect width="12" height="12" x=".49998" y="1.0001" fill="none" stroke="#000" stroke-width=".99996" stroke-miterlimit="10" stroke-linejoin="bevel" rx="1.2112" ry="1.2111" class="stroked"/>
- <path d="m3.0938 2.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4687h2.4063a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002 0.25002 0 0 0 0 -0.0625
0.25002 0.25002 0 0 0 -0.032 -0.0625 0.25002 0.25002 0 0 0 -0.0933 -0.0938 0.25002 0.25002 0 0 0 -0.0625 -0.0312 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 14">
+ <rect width="12" height="12" x=".49998" y="1.0001" fill="none" stroke="#000" stroke-width=".99996" stroke-miterlimit="10" stroke-linejoin="bevel" rx="1.2112" ry="1.2111"/>
+ <path d="m3.0938 2.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2813a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4687a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4687h2.4063a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2813a0.25002 0.25002 0 0 0 0 -0.0625
0.25002 0.25002 0 0 0 -0.032 -0.0625 0.25002 0.25002 0 0 0 -0.0933 -0.0938 0.25002 0.25002 0 0 0 -0.0625 -0.0312 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNetworksvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Network.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Network.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Network.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="#000" d="m4.5761 6.9615c-0.3214 0-0.6383 0.0939-0.8438 0.292l-3.7323 3.8625 3.7972 3.862c0.20533 0.19837 0.45753 0.29208 0.77891 0.29209h1.0385v-1.0385c-0.0000519-0.26678-0.13457-0.54909-0.32454-0.74645l-1.3306-1.3306h4.7708c0.54867 0.0073 1.0385-0.48982 1.0385-1.0385 0-0.54872-0.48987-1.0463-1.0385-1.0385h-4.8032l1.2657-1.3306c0.1897-0.1985 0.4218-0.4806 0.4218-0.7474v-1.0385z" class="filled"/>
- <path fill="#000" d="m11.424 9.0385c0.32136-0.0000415 0.63832-0.093988 0.84381-0.29209l3.732-3.862-3.797-3.8621c-0.205-0.19836-0.458-0.29207-0.779-0.29208h-1.0385v1.0385c0.000052 0.26678 0.13457 0.54909 0.32454 0.74645l1.3306 1.3306h-5.3874c-0.54867-0.00727-1.0385 0.48982-1.0385 1.0385 0 0.54872 0.48987 1.0463 1.0385 1.0385h5.4199l-1.2657 1.3306c-0.19 0.1977-0.423 0.4798-0.423 0.7466v1.0385z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="#000" d="m4.5761 6.9615c-0.3214 0-0.6383 0.0939-0.8438 0.292l-3.7323 3.8625 3.7972 3.862c0.20533 0.19837 0.45753 0.29208 0.77891 0.29209h1.0385v-1.0385c-0.0000519-0.26678-0.13457-0.54909-0.32454-0.74645l-1.3306-1.3306h4.7708c0.54867 0.0073 1.0385-0.48982 1.0385-1.0385 0-0.54872-0.48987-1.0463-1.0385-1.0385h-4.8032l1.2657-1.3306c0.1897-0.1985 0.4218-0.4806 0.4218-0.7474v-1.0385z"/>
+ <path fill="#000" d="m11.424 9.0385c0.32136-0.0000415 0.63832-0.093988 0.84381-0.29209l3.732-3.862-3.797-3.8621c-0.205-0.19836-0.458-0.29207-0.779-0.29208h-1.0385v1.0385c0.000052 0.26678 0.13457 0.54909 0.32454 0.74645l1.3306 1.3306h-5.3874c-0.54867-0.00727-1.0385 0.48982-1.0385 1.0385 0 0.54872 0.48987 1.0463 1.0385 1.0385h5.4199l-1.2657 1.3306c-0.19 0.1977-0.423 0.4798-0.423 0.7466v1.0385z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNewTabsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTab.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTab.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTab.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m1.5833 0c-0.88357 0-1.5833 0.73199-1.5833 1.625v12.75c0 0.893 0.69973 1.625 1.5833 1.625h12.834c0.883 0 1.583-0.732 1.583-1.625v-12.75c0-0.89301-0.7-1.625-1.583-1.625h-12.834zm5.0833 4h2.6667v2.6667h2.6667v2.6667h-2.6667v2.6667h-2.6667v-2.6667h-2.6667v-2.6667h2.6667v-2.6667z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m1.5833 0c-0.88357 0-1.5833 0.73199-1.5833 1.625v12.75c0 0.893 0.69973 1.625 1.5833 1.625h12.834c0.883 0 1.583-0.732 1.583-1.625v-12.75c0-0.89301-0.7-1.625-1.583-1.625h-12.834zm5.0833 4h2.6667v2.6667h2.6667v2.6667h-2.6667v2.6667h-2.6667v-2.6667h-2.6667v-2.6667h2.6667v-2.6667z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkNewTabPlussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTabPlus.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTabPlus.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/NewTabPlus.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 15 15">
- <path d="m6.4767 2v4.5208h-4.4767v1.9584h4.4767v4.5208h2.0465v-4.5208h4.4767v-1.9584h-4.4767v-4.5208h-2.0465" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path d="m6.4767 2v4.5208h-4.4767v1.9584h4.4767v4.5208h2.0465v-4.5208h4.4767v-1.9584h-4.4767v-4.5208h-2.0465"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPaintFlashingsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PaintFlashing.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PaintFlashing.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PaintFlashing.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m13.93 1.5c-0.12717 0.00228-0.29604 0.085471-0.47681 0.26489-3.3896 3.3642-3.9819 3.3962-7.1521 7.7614 0.85067 0.03196 1.5809 0.58374 1.9602 1.3774 3.7537-4.0456 4.1767-6.2083 5.8017-8.8212 0.163-0.3527 0.079-0.5866-0.133-0.5828zm-7.9464 8.768c-0.29267 0.0069-0.62917 0.08868-0.95362 0.29138-1.1199 0.7-0.8722 3.206-3.1787 3.206 0.2183 0.845 3.5316 1.044 4.9005 0.159 0.7136-0.462 1.2401-1.315 0.9536-2.358-0.1703-0.62-0.8438-1.319-1.7218-1.298z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m13.93 1.5c-0.12717 0.00228-0.29604 0.085471-0.47681 0.26489-3.3896 3.3642-3.9819 3.3962-7.1521 7.7614 0.85067 0.03196 1.5809 0.58374 1.9602 1.3774 3.7537-4.0456 4.1767-6.2083 5.8017-8.8212 0.163-0.3527 0.079-0.5866-0.133-0.5828zm-7.9464 8.768c-0.29267 0.0069-0.62917 0.08868-0.95362 0.29138-1.1199 0.7-0.8722 3.206-3.1787 3.206 0.2183 0.845 3.5316 1.044 4.9005 0.159 0.7136-0.462 1.2401-1.315 0.9536-2.358-0.1703-0.62-0.8438-1.319-1.7218-1.298z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPausesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pause.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pause.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pause.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4 4v8h3v-8h-3z" class="filled"/>
- <path d="m9 4v8h3v-8h-3z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4 4v8h3v-8h-3z"/>
+ <path d="m9 4v8h3v-8h-3z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPausedBreakpointsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PausedBreakpoint.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PausedBreakpoint.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PausedBreakpoint.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
+ <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPencilsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pencil.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pencil.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Pencil.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,12 +1,12 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="a" gradientTransform="matrix(-2.7366 .40434 -.18908 -1.4335 -715.46 -3905.3)">
</span><span class="cx"> <stop offset="0"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="16" height="15.951" y=".049291" fill="none" rx="0" ry="0" class="filled"/>
- <path fill="url(#a)" fill-rule="evenodd" d="m12.656 0.52387-1.875 1.9938c1.3287 0.02582 2.6651 1.2078 2.7188 2.43l2-1.9938c-0.055-1.2615-1.474-2.4808-2.844-2.43z" class="filled"/>
- <path fill="url(#a)" fill-rule="evenodd" d="m2.1304 11.526 7.5202-8.0098c1.3694-0.0508 2.7944 1.1598 2.8494 2.4213l-7.49 7.7695-4.51 1.771z" class="filled"/>
</del><ins>+ <rect width="16" height="15.951" y=".049291" fill="none" rx="0" ry="0"/>
+ <path fill="url(#a)" fill-rule="evenodd" d="m12.656 0.52387-1.875 1.9938c1.3287 0.02582 2.6651 1.2078 2.7188 2.43l2-1.9938c-0.055-1.2615-1.474-2.4808-2.844-2.43z"/>
+ <path fill="url(#a)" fill-rule="evenodd" d="m2.1304 11.526 7.5202-8.0098c1.3694-0.0508 2.7944 1.1598 2.8494 2.4213l-7.49 7.7695-4.51 1.771z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPlus13svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus13.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus13.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus13.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path d="m5.4767 1v4.5208h-4.4767v1.9584h4.4767v4.5208h2.0465v-4.5208h4.4767v-1.9584h-4.4767v-4.5208h-2.0465" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="m5.4767 1v4.5208h-4.4767v1.9584h4.4767v4.5208h2.0465v-4.5208h4.4767v-1.9584h-4.4767v-4.5208h-2.0465"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPlus15svg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus15.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus15.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Plus15.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 15 15">
- <path d="m6.2907 1v5.3428h-5.2907v2.3145h5.2907v5.3428h2.4186v-5.3428h5.2907v-2.3145h-5.2907v-5.3428h-2.4186" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 15 15">
+ <path d="m6.2907 1v5.3428h-5.2907v2.3145h5.2907v5.3428h2.4186v-5.3428h5.2907v-2.3145h-5.2907v-5.3428h-2.4186"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkPseudoElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PseudoElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PseudoElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/PseudoElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
+ <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkRecordsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Record.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Record.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Record.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path fill="#ef2929" d="m6.5 1.5175c-2.7496 0-4.9825 2.2329-4.9825 4.9825s2.2329 4.9825 4.9825 4.9825 4.9825-2.2329 4.9825-4.9825-2.2329-4.9825-4.9825-4.9825z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path fill="#ef2929" d="m6.5 1.5175c-2.7496 0-4.9825 2.2329-4.9825 4.9825s2.2329 4.9825 4.9825 4.9825 4.9825-2.2329 4.9825-4.9825-2.2329-4.9825-4.9825-4.9825z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReflectionsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Reflection.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Reflection.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Reflection.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#204a87" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#bdd2e9" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.7937 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.000652 0.010403-0.000652 0.020847 0 0.03125-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.0059 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.0053 0.5 0l1.75 2.9688a0
.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9066-3.1249c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.0006514-0.02085-0.0006514-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.020841-0.46875-0.03125v-1.7813z"
display="block" class="filled"/>
- <path fill="url(#d)" d="m4.8455 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.000652 0.010403-0.000652 0.020847 0 0.03125-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.00594 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.00525 0.5 0l1.75 2.9
688a0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9068-3.1252c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.0006514-0.02085-0.0006514-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.020841-0.46875-0.03125v-1.7813z&q
uot; display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.7937 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.000652 0.010403-0.000652 0.020847 0 0.03125-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.0059 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.0053 0.5 0l1.75 2.9688a0
.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9066-3.1249c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.0006514-0.02085-0.0006514-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.020841-0.46875-0.03125v-1.7813z"
display="block"/>
+ <path fill="url(#d)" d="m4.8455 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.000652 0.010403-0.000652 0.020847 0 0.03125-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.00594 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.00525 0.5 0l1.75 2.9
688a0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9068-3.1252c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.0006514-0.02085-0.0006514-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.020841-0.46875-0.03125v-1.7813z&q
uot; display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReloadFullsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadFull.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadFull.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadFull.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path d="m11.902 0.48662c-0.04226 0.007714-0.08403 0.018155-0.12496 0.031239-0.44699 0.1001-0.792 0.54171-0.78097 0.99964v1.6869c-0.382-0.5778-0.849-1.0818-1.4054-1.4995-1.1552-0.86643-2.5311-1.2518-3.8736-1.187-0.1918 0.00895-0.3721 0.03524-0.5623 0.06243-1.5217 0.21734-2.9771 1.0227-3.9674 2.3429-1.9804 2.6405-1.4221 6.4228 1.2184 8.4028 2.6405 1.9805 6.4227 1.4222 8.4032-1.2183 0.12263-0.17163 0.18926-0.38261 0.18743-0.59354 0.004-0.051961 0.004-0.10423 0-0.15619v-0.84345h-0.81221-0.09372c-0.03122-0.00146-0.0625-0.00146-0.093716 0-0.3137-0.0011-0.6246 0.1544-0.8118 0.4065-1.3322 1.7759-3.8157 2.1129-5.5918 0.781-1.7761-1.3322-2.1131-3.8157-0.7809-5.5918 1.3321-1.7761 3.8156-2.1131 5.5917-0.781 0.4293 0.3221 0.7693 0.7327 1.0309 1.1871h-1.437c-0.5234 0.0000524-0.99959 0.47624-0.99964 0.99964-0.00799 0.072599-0.00799 0.14607 0 0.21867v0.78097h0.84345 0.15619 3.9986 0.99964v-0.99964-5.0261c-0.36447 0.003399-0.72892-0.001789-1.0934-0.003259z" class="filled&
quot;/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="m11.902 0.48662c-0.04226 0.007714-0.08403 0.018155-0.12496 0.031239-0.44699 0.1001-0.792 0.54171-0.78097 0.99964v1.6869c-0.382-0.5778-0.849-1.0818-1.4054-1.4995-1.1552-0.86643-2.5311-1.2518-3.8736-1.187-0.1918 0.00895-0.3721 0.03524-0.5623 0.06243-1.5217 0.21734-2.9771 1.0227-3.9674 2.3429-1.9804 2.6405-1.4221 6.4228 1.2184 8.4028 2.6405 1.9805 6.4227 1.4222 8.4032-1.2183 0.12263-0.17163 0.18926-0.38261 0.18743-0.59354 0.004-0.051961 0.004-0.10423 0-0.15619v-0.84345h-0.81221-0.09372c-0.03122-0.00146-0.0625-0.00146-0.093716 0-0.3137-0.0011-0.6246 0.1544-0.8118 0.4065-1.3322 1.7759-3.8157 2.1129-5.5918 0.781-1.7761-1.3322-2.1131-3.8157-0.7809-5.5918 1.3321-1.7761 3.8156-2.1131 5.5917-0.781 0.4293 0.3221 0.7693 0.7327 1.0309 1.1871h-1.437c-0.5234 0.0000524-0.99959 0.47624-0.99964 0.99964-0.00799 0.072599-0.00799 0.14607 0 0.21867v0.78097h0.84345 0.15619 3.9986 0.99964v-0.99964-5.0261c-0.36447 0.003399-0.72892-0.001789-1.0934-0.003259z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReloadToolbarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadToolbar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadToolbar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReloadToolbar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m12.908 1.9686c-0.04228 0.00772-0.08406 0.018162-0.125 0.031249-0.447 0.1002-0.792 0.542-0.781 1.0001v1.6875c-0.382-0.578-0.849-1.0823-1.406-1.5-1.1557-0.8668-2.532-1.2523-3.875-1.1875-0.19186 0.009-0.37222 0.035299-0.56249 0.062499-1.5222 0.2174-2.9781 1.023-3.9687 2.3437-1.9811 2.6414-1.4226 6.4249 1.2187 8.4059 2.6414 1.9812 6.4249 1.4226 8.4061-1.2187 0.12267-0.17168 0.18932-0.38274 0.1875-0.59374 0.004-0.05198 0.004-0.10427 0-0.15625v-0.84373h-0.81248-0.09375c-0.03123-0.00146-0.06252-0.00146-0.09375 0-0.31415-0.00145-0.62516 0.15405-0.81248 0.40624-1.333 1.777-3.8173 2.114-5.594 0.781-1.7767-1.3324-2.1138-3.8167-0.7812-5.5934s3.8169-2.1139 5.5936-0.7813c0.4295 0.3222 0.7696 0.733 1.0316 1.1875h-1.4375c-0.52357 0.0000524-0.99993 0.47641-0.99998 0.99998-0.00799 0.072624-0.00799 0.14612 0 0.21875v0.78123h0.84373 0.15625 3.9999 0.99998v-0.99998-5.0278c-0.3646 0.0034-0.72916-0.00179-1.0937-0.00326z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m12.908 1.9686c-0.04228 0.00772-0.08406 0.018162-0.125 0.031249-0.447 0.1002-0.792 0.542-0.781 1.0001v1.6875c-0.382-0.578-0.849-1.0823-1.406-1.5-1.1557-0.8668-2.532-1.2523-3.875-1.1875-0.19186 0.009-0.37222 0.035299-0.56249 0.062499-1.5222 0.2174-2.9781 1.023-3.9687 2.3437-1.9811 2.6414-1.4226 6.4249 1.2187 8.4059 2.6414 1.9812 6.4249 1.4226 8.4061-1.2187 0.12267-0.17168 0.18932-0.38274 0.1875-0.59374 0.004-0.05198 0.004-0.10427 0-0.15625v-0.84373h-0.81248-0.09375c-0.03123-0.00146-0.06252-0.00146-0.09375 0-0.31415-0.00145-0.62516 0.15405-0.81248 0.40624-1.333 1.777-3.8173 2.114-5.594 0.781-1.7767-1.3324-2.1138-3.8167-0.7812-5.5934s3.8169-2.1139 5.5936-0.7813c0.4295 0.3222 0.7696 0.733 1.0316 1.1875h-1.4375c-0.52357 0.0000524-0.99993 0.47641-0.99998 0.99998-0.00799 0.072624-0.00799 0.14612 0 0.21875v0.78123h0.84373 0.15625 3.9999 0.99998v-0.99998-5.0278c-0.3646 0.0034-0.72916-0.00179-1.0937-0.00326z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayPauseButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPauseButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPauseButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPauseButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 36 36">
- <path d="m9 9v18h6.75v-18h-6.75z" class="filled"/>
- <path d="m20.25 9v18h6.75v-18h-6.75z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
+ <path d="m9 9v18h6.75v-18h-6.75z"/>
+ <path d="m20.25 9v18h6.75v-18h-6.75z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayPlayButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPlayButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPlayButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayPlayButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 36 36">
- <path fill="#4e9a06" d="m9.0001 6.75v22.5h2.0391 0.21094c0.39356 0.0023 0.78251-0.0873 1.125-0.28125l15.75-9c0.699-0.387 1.055-1.178 1.055-1.969 0-0.79099-0.35562-1.582-1.0547-1.9688l-15.75-9c-0.342-0.1938-0.731-0.2839-1.125-0.281h-0.21094z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
+ <path fill="#4e9a06" d="m9.0001 6.75v22.5h2.0391 0.21094c0.39356 0.0023 0.78251-0.0873 1.125-0.28125l15.75-9c0.699-0.387 1.055-1.178 1.055-1.969 0-0.79099-0.35562-1.582-1.0547-1.9688l-15.75-9c-0.342-0.1938-0.731-0.2839-1.125-0.281h-0.21094z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkReplayRecordingButtonsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayRecordingButton.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayRecordingButton.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ReplayRecordingButton.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 36 36">
- <path fill="#ef2929" d="m18 6.7895c-6.187 0-11.21 5.0235-11.21 11.21-0.0005 6.187 5.023 11.211 11.21 11.211s11.211-5.024 11.211-11.211-5.024-11.21-11.211-11.21z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 36 36">
+ <path fill="#ef2929" d="m18 6.7895c-6.187 0-11.21 5.0235-11.21 11.21-0.0005 6.187 5.023 11.211 11.21 11.211s11.211-5.024 11.211-11.211-5.024-11.21-11.211-11.21z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkRequestsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Request.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Request.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Request.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#ce5c00" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#fedba8" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m7.029 4.6964c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0.62
5c-0.5601 0.4839-1.1564 1.1824-1.1564 2.4995v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000652 0.02085 0.000652 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42536 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1562-1.1016 1.1562-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9687c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.062
5v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000651-0.02085-0.000651-0.03125 0h-1.5z" display="block" class="filled"/>
- <path fill="url(#d)" d="m7.0808 3.666c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0
.625c-0.56002 0.48406-1.1562 1.1825-1.1562 2.5v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000651 0.02085 0.000651 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42537 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1562-1.1016 1.1562-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9688c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.0
625v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000652-0.02085-0.000652-0.03125 0h-1.5z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m7.029 4.6964c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0.62
5c-0.5601 0.4839-1.1564 1.1824-1.1564 2.4995v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000652 0.02085 0.000652 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42536 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1562-1.1016 1.1562-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9687c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.062
5v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000651-0.02085-0.000651-0.03125 0h-1.5z" display="block"/>
+ <path fill="url(#d)" d="m7.0808 3.666c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0
.625c-0.56002 0.48406-1.1562 1.1825-1.1562 2.5v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000651 0.02085 0.000651 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42537 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1562-1.1016 1.1562-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9688c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.0
625v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000652-0.02085-0.000652-0.03125 0h-1.5z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkResourcessvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resources.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resources.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resources.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m3.8503 2.0009a0.80002 0.80002 0 0 0 -0.65 0.7999v10.399a0.80002 0.80002 0 0 0 0.7999 0.8h7.9994a0.80002 0.80002 0 0 0 0.79994 -0.79994v-7.5494a0.80002 0.80002 0 0 0 -0.225 -0.5749l-2.8502-2.8498a0.80002 0.80002 0 0 0 -0.5749 -0.225h-5.1496a0.80002 0.80002 0 0 0 -0.074955 0 0.80002 0.80002 0 0 0 -0.074955 0zm0.94993 1.5999h3.9997v2.3998h2.3998v6.3995h-6.3995v-8.7994z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m3.8503 2.0009a0.80002 0.80002 0 0 0 -0.65 0.7999v10.399a0.80002 0.80002 0 0 0 0.7999 0.8h7.9994a0.80002 0.80002 0 0 0 0.79994 -0.79994v-7.5494a0.80002 0.80002 0 0 0 -0.225 -0.5749l-2.8502-2.8498a0.80002 0.80002 0 0 0 -0.5749 -0.225h-5.1496a0.80002 0.80002 0 0 0 -0.074955 0 0.80002 0.80002 0 0 0 -0.074955 0zm0.94993 1.5999h3.9997v2.3998h2.3998v6.3995h-6.3995v-8.7994z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkResponsesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Response.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Response.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Response.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#204a87" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#bdd2e9" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.7634 4.8508a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v4.4062l-0.875-0.78125c-0.24477-0.21756-0.55772-0.31249-0.875-0.3125h-1a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.0625v0.875c0.000013 0.30161 0.099 0.62617 0.34375 0.84375l3 2.6562 0.28125 0.25a0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.125 0.03125h0.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.28125-0.25 3-2.6562c0.24481-0.21759 0.37499-0.54217 0.375-0.84375v-0.875a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002
0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1c-0.31728 0.0000105-0.66148 0.094941-0.90625 0.3125l-0.84375 0.75v-4.375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-2a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.8152 3.8205a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v4.4062l-0.875-0.78125c-0.24477-0.21756-0.55772-0.31249-0.875-0.3125h-1a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.0625v0.875c0.000013 0.30161 0.099 0.62617 0.34375 0.84375l3 2.6563 0.28125 0.25a0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.125 0.03125h0.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.28125-0.25 3-2.6563c0.24481-0.21759 0.37499-0.54217 0.375-0.84375v-0.875a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25
002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1c-0.31728 0.0000105-0.66148 0.094941-0.90625 0.3125l-0.84375 0.75v-4.375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-2a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.7634 4.8508a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v4.4062l-0.875-0.78125c-0.24477-0.21756-0.55772-0.31249-0.875-0.3125h-1a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.0625v0.875c0.000013 0.30161 0.099 0.62617 0.34375 0.84375l3 2.6562 0.28125 0.25a0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.125 0.03125h0.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.28125-0.25 3-2.6562c0.24481-0.21759 0.37499-0.54217 0.375-0.84375v-0.875a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002
0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1c-0.31728 0.0000105-0.66148 0.094941-0.90625 0.3125l-0.84375 0.75v-4.375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-2a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.8152 3.8205a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v4.4062l-0.875-0.78125c-0.24477-0.21756-0.55772-0.31249-0.875-0.3125h-1a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.0625v0.875c0.000013 0.30161 0.099 0.62617 0.34375 0.84375l3 2.6563 0.28125 0.25a0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.125 0.03125h0.875a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.28125-0.25 3-2.6563c0.24481-0.21759 0.37499-0.54217 0.375-0.84375v-0.875a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25
002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1c-0.31728 0.0000105-0.66148 0.094941-0.90625 0.3125l-0.84375 0.75v-4.375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-2a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkResultLinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ResultLine.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ResultLine.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ResultLine.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="e" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -23,10 +23,10 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.8249 5.5063a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm0 2.6875a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125
0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm0 2.6875a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002
0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.8767 4.476c-0.024316 0.016912-0.045588 0.038184-0.0625 0.0625-0.013269 0.019236-0.023823 0.040343-0.03125 0.0625-0.021038 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.020724-0.00261 0.041776 0 0.0625 0.00847 0.046447 0.030425 0.090355 0.0625 0.125 0.00947 0.011311 0.019939 0.021782 0.03125 0.03125 0.019236 0.013269 0.040343 0.023823 0.0625 0.03125 0.020724 0.00261 0.041776 0.00261 0.0625 0 0.010403 0.0006514 0.020847 0.0006514 0.03125 0h5.875c0.03291-0.00406 0.06499-0.014754 0.09375-0.03125 0.02216-0.00743 0.04326-0.017981 0.0625-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.0165-0.028764 0.02719-0.060841 0.03125-0.09375 0.000651-0.010403 0.000651-0.020847 0-0.03125v-1.3125c0.0026-0.020724 0.0026-0.041776 0-0.0625-0.01695-0.050185-0.05032-0.094676-0.09375-0.125-0.01924-0.013269-0.04034-0.023822-0.0625-0.03125-0.02876-0.016495-0.06084-0.027188-0.09375-0.03
125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0zm0 5.375c-0.024316 0.016912-0.045588 0.038185-0.0625 0.0625-0.013269 0.019236-0.023823 0.040343-0.03125 0.0625-0.021039 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.02072-0.00261 0.04178 0 0.0625 0.00847 0.04645 0.030425 0.09035 0.0625 0.125 0.00947 0.01131 0.019939 0.02178 0.03125 0.03125 0.019236 0.01327 0.040343 0.02382 0.0625 0.03125 0.020724 0.0026 0.041776 0.0026 0.0625 0 0.010403 0.000651 0.020847 0.000651 0.03125 0h5.875c0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02216-0.0074 0.04326-0.01798 0.0625-0.03125 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.0165-0.02876 0.02719-0.06084 0.03125-0.09375 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3125c0.0026-0.02072 0.0026-0.04178 0-0.0625-0.01695-0.050186-0.05032-0.094677-0.09375-0.125-0.01924-0.013269-0.
04034-0.023822-0.0625-0.03125-0.02876-0.016495-0.06084-0.027188-0.09375-0.03125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0z" display="block" class="filled"/>
- <path fill="url(#e)" d="m4.8767 7.1635c-0.024316 0.016912-0.045588 0.038184-0.0625 0.0625-0.013269 0.019236-0.023822 0.040343-0.03125 0.0625-0.021038 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.020724-0.00261 0.041776 0 0.0625 0.00847 0.046447 0.030425 0.090355 0.0625 0.125 0.00947 0.011311 0.019939 0.021782 0.03125 0.03125 0.019236 0.013269 0.040343 0.023822 0.0625 0.03125 0.020724 0.00261 0.041776 0.00261 0.0625 0 0.010403 0.0006514 0.020847 0.0006514 0.03125 0h5.875c0.03291-0.00406 0.06499-0.014755 0.09375-0.03125 0.02216-0.00743 0.04326-0.017981 0.0625-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.0165-0.028764 0.02719-0.060841 0.03125-0.09375 0.000651-0.010403 0.000651-0.020847 0-0.03125v-1.3125c0.0026-0.020724 0.0026-0.041776 0-0.0625-0.01695-0.050185-0.05032-0.094677-0.09375-0.125-0.01924-0.013269-0.04034-0.023823-0.0625-0.03125-0.02876-0.016496-0.06084-0.027188-0.09375-0.0
3125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.8249 5.5063a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm0 2.6875a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125
0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0zm0 2.6875a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.125v1.3125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002
0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 0h5.875a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-5.875a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m4.8767 4.476c-0.024316 0.016912-0.045588 0.038184-0.0625 0.0625-0.013269 0.019236-0.023823 0.040343-0.03125 0.0625-0.021038 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.020724-0.00261 0.041776 0 0.0625 0.00847 0.046447 0.030425 0.090355 0.0625 0.125 0.00947 0.011311 0.019939 0.021782 0.03125 0.03125 0.019236 0.013269 0.040343 0.023823 0.0625 0.03125 0.020724 0.00261 0.041776 0.00261 0.0625 0 0.010403 0.0006514 0.020847 0.0006514 0.03125 0h5.875c0.03291-0.00406 0.06499-0.014754 0.09375-0.03125 0.02216-0.00743 0.04326-0.017981 0.0625-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.0165-0.028764 0.02719-0.060841 0.03125-0.09375 0.000651-0.010403 0.000651-0.020847 0-0.03125v-1.3125c0.0026-0.020724 0.0026-0.041776 0-0.0625-0.01695-0.050185-0.05032-0.094676-0.09375-0.125-0.01924-0.013269-0.04034-0.023822-0.0625-0.03125-0.02876-0.016495-0.06084-0.027188-0.09375-0.03
125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0zm0 5.375c-0.024316 0.016912-0.045588 0.038185-0.0625 0.0625-0.013269 0.019236-0.023823 0.040343-0.03125 0.0625-0.021039 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.02072-0.00261 0.04178 0 0.0625 0.00847 0.04645 0.030425 0.09035 0.0625 0.125 0.00947 0.01131 0.019939 0.02178 0.03125 0.03125 0.019236 0.01327 0.040343 0.02382 0.0625 0.03125 0.020724 0.0026 0.041776 0.0026 0.0625 0 0.010403 0.000651 0.020847 0.000651 0.03125 0h5.875c0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02216-0.0074 0.04326-0.01798 0.0625-0.03125 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.0165-0.02876 0.02719-0.06084 0.03125-0.09375 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3125c0.0026-0.02072 0.0026-0.04178 0-0.0625-0.01695-0.050186-0.05032-0.094677-0.09375-0.125-0.01924-0.013269-0.
04034-0.023822-0.0625-0.03125-0.02876-0.016495-0.06084-0.027188-0.09375-0.03125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0z" display="block"/>
+ <path fill="url(#e)" d="m4.8767 7.1635c-0.024316 0.016912-0.045588 0.038184-0.0625 0.0625-0.013269 0.019236-0.023822 0.040343-0.03125 0.0625-0.021038 0.038004-0.031929 0.081566-0.03125 0.125v1.3125c-0.00261 0.020724-0.00261 0.041776 0 0.0625 0.00847 0.046447 0.030425 0.090355 0.0625 0.125 0.00947 0.011311 0.019939 0.021782 0.03125 0.03125 0.019236 0.013269 0.040343 0.023822 0.0625 0.03125 0.020724 0.00261 0.041776 0.00261 0.0625 0 0.010403 0.0006514 0.020847 0.0006514 0.03125 0h5.875c0.03291-0.00406 0.06499-0.014755 0.09375-0.03125 0.02216-0.00743 0.04326-0.017981 0.0625-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125 0.0165-0.028764 0.02719-0.060841 0.03125-0.09375 0.000651-0.010403 0.000651-0.020847 0-0.03125v-1.3125c0.0026-0.020724 0.0026-0.041776 0-0.0625-0.01695-0.050185-0.05032-0.094677-0.09375-0.125-0.01924-0.013269-0.04034-0.023823-0.0625-0.03125-0.02876-0.016496-0.06084-0.027188-0.09375-0.0
3125h-5.875c-0.020724-0.00261-0.041776-0.00261-0.0625 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0-0.010403-0.0006514-0.020847-0.0006514-0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkResumesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resume.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resume.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Resume.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m2.5312 4v8h2v-8z" class="filled"/>
- <path d="m7.5313 4c0.17738 0.008 0.35117 0.0592 0.5 0.15625l5 3c0.2824 0.17971 0.4375 0.51173 0.4375 0.84375s-0.1551 0.66404-0.4375 0.84375l-5 3c-0.1486 0.097-0.3223 0.148-0.4997 0.156h-0.15625-0.84375v-8h0.84375z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m2.5312 4v8h2v-8z"/>
+ <path d="m7.5313 4c0.17738 0.008 0.35117 0.0592 0.5 0.15625l5 3c0.2824 0.17971 0.4375 0.51173 0.4375 0.84375s-0.1551 0.66404-0.4375 0.84375l-5 3c-0.1486 0.097-0.3223 0.148-0.4997 0.156h-0.15625-0.84375v-8h0.84375z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkSearchResultssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SearchResults.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SearchResults.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SearchResults.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path fill="none" stroke="#000" stroke-width="1.5547" d="m311 386.5a3.5 3.5 0 1 1 -7 0 3.5 3.5 0 1 1 7 0z" stroke-linejoin="round" transform="matrix(1.2872 0 0 1.2857 -389.3 -490.43)" stroke-linecap="round" class="stroked"/>
- <path fill="none" stroke="#000" stroke-width="2" d="m10.011 10 4.0046 4" stroke-linejoin="round" stroke-linecap="round" class="stroked"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path fill="none" stroke="#000" stroke-width="1.5547" d="m311 386.5a3.5 3.5 0 1 1 -7 0 3.5 3.5 0 1 1 7 0z" stroke-linejoin="round" transform="matrix(1.2872 0 0 1.2857 -389.3 -490.43)" stroke-linecap="round"/>
+ <path fill="none" stroke="#000" stroke-width="2" d="m10.011 10 4.0046 4" stroke-linejoin="round" stroke-linecap="round"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkShadowDOMsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ShadowDOM.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ShadowDOM.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ShadowDOM.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m7.7147 5.2557-5.8503 2.8749v1.3307l5.8503 2.7745v-1.5693l-3.9671-1.9082 3.9671-1.9961v-1.5065" class="filled"/>
- <path d="m8.9972 5.2557v1.5065l3.9671 1.9961-3.9671 1.9082v1.5693l5.8503-2.7745v-1.3307l-5.8503-2.8749" class="filled"/>
- <path d="m7.0028 3.7642-5.8503 2.8749v1.3307l5.8503 2.7745v-1.5693l-3.9671-1.9082 3.9671-1.9961v-1.5065" class="filled"/>
- <path d="m8.2853 3.7642v1.5065l3.9671 1.9961-3.9671 1.9082v1.5693l5.8503-2.7745v-1.3307l-5.8503-2.8749" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m7.7147 5.2557-5.8503 2.8749v1.3307l5.8503 2.7745v-1.5693l-3.9671-1.9082 3.9671-1.9961v-1.5065"/>
+ <path d="m8.9972 5.2557v1.5065l3.9671 1.9961-3.9671 1.9082v1.5693l5.8503-2.7745v-1.3307l-5.8503-2.8749"/>
+ <path d="m7.0028 3.7642-5.8503 2.8749v1.3307l5.8503 2.7745v-1.5693l-3.9671-1.9082 3.9671-1.9961v-1.5065"/>
+ <path d="m8.2853 3.7642v1.5065l3.9671 1.9961-3.9671 1.9082v1.5693l5.8503-2.7745v-1.3307l-5.8503-2.8749"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkSortIndicatorArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SortIndicatorArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SortIndicatorArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SortIndicatorArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 9 8">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 9 8">
</ins><span class="cx"> <style>
</span><span class="cx"> svg[id] {
</span><span class="cx"> display: none;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkSplitToggleUpsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SplitToggleUp.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SplitToggleUp.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/SplitToggleUp.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m8.0001 1.7925-0.71877 0.6875-5.0001 5a1.0165 1.0165 0 0 0 -0.28126 0.84375 1.0165 1.0165 0 0 0 0 0.09375v0.78125h0.84377 0.15625a1.0165 1.0165 0 0 0 0.71877 -0.28125l4.2814-4.2813 4.2809 4.2812a1.0165 1.0165 0 0 0 0.84377 0.28125h0.09375 0.78127v-0.84375a1.0165 1.0165 0 0 0 0 -0.15625 1.0165 1.0165 0 0 0 -0.28126 -0.71875l-5.0001-5-0.71877-0.6875z" class="filled"/>
- <path d="m8.0001 6.7925-0.71877 0.6875-5.0001 5a1.0165 1.0165 0 0 0 -0.2812 0.844 1.0165 1.0165 0 0 0 0 0.09375v0.78125h0.84377 0.15625a1.0165 1.0165 0 0 0 0.71877 -0.28125l4.2813-4.2817 4.2809 4.2817a1.0165 1.0165 0 0 0 0.84377 0.28125h0.09375 0.78127v-0.84375a1.0165 1.0165 0 0 0 0 -0.15625 1.0165 1.0165 0 0 0 -0.28126 -0.71875l-5.0001-5-0.7188-0.6875z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m8.0001 1.7925-0.71877 0.6875-5.0001 5a1.0165 1.0165 0 0 0 -0.28126 0.84375 1.0165 1.0165 0 0 0 0 0.09375v0.78125h0.84377 0.15625a1.0165 1.0165 0 0 0 0.71877 -0.28125l4.2814-4.2813 4.2809 4.2812a1.0165 1.0165 0 0 0 0.84377 0.28125h0.09375 0.78127v-0.84375a1.0165 1.0165 0 0 0 0 -0.15625 1.0165 1.0165 0 0 0 -0.28126 -0.71875l-5.0001-5-0.71877-0.6875z"/>
+ <path d="m8.0001 6.7925-0.71877 0.6875-5.0001 5a1.0165 1.0165 0 0 0 -0.2812 0.844 1.0165 1.0165 0 0 0 0 0.09375v0.78125h0.84377 0.15625a1.0165 1.0165 0 0 0 0.71877 -0.28125l4.2813-4.2817 4.2809 4.2817a1.0165 1.0165 0 0 0 0.84377 0.28125h0.09375 0.78127v-0.84375a1.0165 1.0165 0 0 0 0 -0.15625 1.0165 1.0165 0 0 0 -0.28126 -0.71875l-5.0001-5-0.7188-0.6875z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStepIntosvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepInto.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepInto.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepInto.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0" class="filled"/>
- <path d="m7 1v5.5625l-1.2812-1.2813c-0.1882-0.1881-0.4535-0.2812-0.7188-0.2812h-1v1c0.00001 0.2653 0.0931 0.53058 0.28125 0.71875l3 3 0.2813 0.2812h0.875l0.28125-0.28125 3-3c0.188-0.1882 0.281-0.4535 0.281-0.7188v-1h-1c-0.2653 0.00001-0.53059 0.0931-0.71875 0.28125l-1.281 1.2813v-5.5625z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0"/>
+ <path d="m7 1v5.5625l-1.2812-1.2813c-0.1882-0.1881-0.4535-0.2812-0.7188-0.2812h-1v1c0.00001 0.2653 0.0931 0.53058 0.28125 0.71875l3 3 0.2813 0.2812h0.875l0.28125-0.28125 3-3c0.188-0.1882 0.281-0.4535 0.281-0.7188v-1h-1c-0.2653 0.00001-0.53059 0.0931-0.71875 0.28125l-1.281 1.2813v-5.5625z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStepOutsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOut.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOut.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOut.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0" class="filled"/>
- <path d="m7 10v-5.5625l-1.2812 1.2813c-0.1882 0.1881-0.4535 0.2812-0.7188 0.2812h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l3-3 0.2813-0.2812h0.875l0.28125 0.28125 3 3c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.265 0-0.531-0.0931-0.719-0.2812l-1.281-1.2813v5.5625z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0"/>
+ <path d="m7 10v-5.5625l-1.2812 1.2813c-0.1882 0.1881-0.4535 0.2812-0.7188 0.2812h-1v-1c0-0.2653 0.0931-0.5306 0.2812-0.7188l3-3 0.2813-0.2812h0.875l0.28125 0.28125 3 3c0.188 0.1882 0.281 0.4535 0.281 0.7188v1h-1c-0.265 0-0.531-0.0931-0.719-0.2812l-1.281-1.2813v5.5625z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStepOversvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOver.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOver.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StepOver.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0" class="filled"/>
- <path d="m0.66428 7.6325 1.4142 1.4142 4.794-4.794c0.59416-0.59416 1.5272-0.59416 2.1213 0l2.8947 2.8947h-1.812c-0.26372 0.0054-0.54756 0.10561-0.7292 0.28726l-0.70711 0.70711 0.70711 0.70711c0.21881 0.21881 0.4544 0.3267 0.7292 0.33146l5.2149-0.0442 0.04419-5.2149c-0.0048-0.2748-0.11264-0.51039-0.33146-0.7292l-0.7071-0.7071-0.70711 0.70711c-0.18165 0.18165-0.28187 0.46548-0.28726 0.7292v1.812l-2.8947-2.8947c-1.3585-1.3585-3.5913-1.3585-4.9497 0z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="2.9023" height="8" x="12.098" y="-12" transform="rotate(90)" rx="0" ry="0"/>
+ <path d="m0.66428 7.6325 1.4142 1.4142 4.794-4.794c0.59416-0.59416 1.5272-0.59416 2.1213 0l2.8947 2.8947h-1.812c-0.26372 0.0054-0.54756 0.10561-0.7292 0.28726l-0.70711 0.70711 0.70711 0.70711c0.21881 0.21881 0.4544 0.3267 0.7292 0.33146l5.2149-0.0442 0.04419-5.2149c-0.0048-0.2748-0.11264-0.51039-0.33146-0.7292l-0.7071-0.7071-0.70711 0.70711c-0.18165 0.18165-0.28187 0.46548-0.28726 0.7292v1.812l-2.8947-2.8947c-1.3585-1.3585-3.5913-1.3585-4.9497 0z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStopsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Stop.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Stop.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Stop.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 13 13">
- <path d="m2.5 2.5v8h8v-8h-8z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 13 13">
+ <path d="m2.5 2.5v8h8v-8h-8z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStoragesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Storage.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Storage.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Storage.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m32 5.3321a2.3661 0.6679 0 1 1 -4.7322 0 2.3661 0.6679 0 1 1 4.7322 0z" transform="matrix(2.5358 0 0 4.4917 -67.146 -19.95)" class="filled"/>
- <path d="m2 6.6875v2.853c6.3088 3.2839 12 0 12 0v-2.853s-6.1788 3.1718-12 0z" class="filled"/>
- <path d="m2 10.688v2.853c6.3088 3.2839 12 0 12 0v-2.853s-6.1788 3.1718-12 0z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m32 5.3321a2.3661 0.6679 0 1 1 -4.7322 0 2.3661 0.6679 0 1 1 4.7322 0z" transform="matrix(2.5358 0 0 4.4917 -67.146 -19.95)"/>
+ <path d="m2 6.6875v2.853c6.3088 3.2839 12 0 12 0v-2.853s-6.1788 3.1718-12 0z"/>
+ <path d="m2 10.688v2.853c6.3088 3.2839 12 0 12 0v-2.853s-6.1788 3.1718-12 0z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleAuthorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleAuthor.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleAuthor.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleAuthor.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#204a87" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#bdd2e9" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8229-0.402-1.344
5-0.781-1.6564s-0.8014-0.4182-1.0623-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.250
02 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8124a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0
0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.
25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8232-0.402-1.
3448-0.781-1.6567-0.379-0.312-0.8016-0.4182-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8229-0.402-1.344
5-0.781-1.6564s-0.8014-0.4182-1.0623-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.250
02 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8124a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0
0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.
25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8232-0.402-1.
3448-0.781-1.6567-0.379-0.312-0.8016-0.4182-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInheritedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInherited.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInherited.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInherited.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0
-0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25
002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221
-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.000399 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.2
5002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0
0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002
0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.
40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0
-0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25
002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221
-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.000399 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.2
5002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0
0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002
0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.
40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInheritedElementsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInheritedElement.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInheritedElement.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInheritedElement.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2813a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2813a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2813a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2813a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleInspectorsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInspector.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInspector.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleInspector.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#8ae234" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.4497 4.8501c-0.25563 0.019293-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.00904 0.0011 0.022329 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.020053 0.17292 0.038693 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.00639 0.000497 0.025108-0.000401 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.2500
2 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.4195 0.54842-0.91617 0.59375-1.375 0.050423-0.51041 0.098381-0.96692 0.25-1.2188 0.094788-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.
25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.021371 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625
0.25002 0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.000401 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.052111 0.15827-0.073031 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.046959-0.53876-0.2383-0.625-0.8125-0.0011-0.00923 0.0011-0.021928 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.0
7836-0.82274-0.40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41817-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.5015 3.8198c-0.25563 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.00639 0.000497 0.025108-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.2
5002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.050423-0.51041 0.098381-0.96692 0.25-1.2188 0.094788-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.2500
2 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25
002 0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274
-0.40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.4497 4.8501c-0.25563 0.019293-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.00904 0.0011 0.022329 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.020053 0.17292 0.038693 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.00639 0.000497 0.025108-0.000401 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.2500
2 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.4195 0.54842-0.91617 0.59375-1.375 0.050423-0.51041 0.098381-0.96692 0.25-1.2188 0.094788-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.
25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.021371 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625
0.25002 0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.000401 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.052111 0.15827-0.073031 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.046959-0.53876-0.2383-0.625-0.8125-0.0011-0.00923 0.0011-0.021928 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.0
7836-0.82274-0.40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41817-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.5015 3.8198c-0.25563 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.00639 0.000497 0.025108-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.2
5002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.050423-0.51041 0.098381-0.96692 0.25-1.2188 0.094788-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.21875-0.8125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.2500
2 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25
002 0.25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274
-0.40221-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleUsersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUser.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUser.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUser.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#c4a000" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#fef4a8" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8229-0.402-1.344
5-0.781-1.6564s-0.8014-0.4182-1.0623-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.250
02 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8124a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0
0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.
25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8232-0.402-1.
3448-0.781-1.6567-0.379-0.312-0.8016-0.4182-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8229-0.402-1.344
5-0.781-1.6564s-0.8014-0.4182-1.0623-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.5015 3.8198c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.250
02 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2187-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8124a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0
0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.
25002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.078-0.8232-0.402-1.
3448-0.781-1.6567-0.379-0.312-0.8016-0.4182-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkStyleRuleUserAgentsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUserAgent.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUserAgent.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/StyleRuleUserAgent.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221-
1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m6.5623 3.75c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8122a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0
-0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25
002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221
-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m6.4497 4.8501c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8121a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -
0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2188-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.250
02 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221-
1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m6.5623 3.75c-0.25562 0.01929-0.68218 0.12665-1.0625 0.4375s-0.7029 0.82923-0.78125 1.6562c-0.01595 0.21541-0.04213 0.44238-0.0625 0.625-0.001 0.009 0.0011 0.02233 0 0.03125-0.08624 0.5742-0.34913 0.76554-0.625 0.8125l-0.125 0.03125a0.25002 0.25002 0 0 0 -0.09375 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.125v0.8125a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.125 0.03125h0.03125c0.08878 0.02005 0.17292 0.03869 0.25 0.09375 0.1907 0.13841 0.2651 0.34781 0.3125 0.59375s0.06321 0.51581 0.09375 0.8125c0.08313 0.81821 0.426 1.3579 0.8125 1.6562 0.37615 0.2904 0.76763 0.35692 1 0.375 0.0064 0.000497 0.02511-0.0004 0.03125 0l0.125 0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002
0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l0.21875-0.84375a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-0.1875c-0.18184-0.02204-0.34449-0.17298-0.4375-0.3125-0.1576-0.24224-0.16703-0.69416-0.21875-1.2188-0.04542-0.46068-0.24764-0.95497-0.625-1.375 0.37302-0.41951 0.54842-0.91617 0.59375-1.375 0.05042-0.51041 0.09838-0.96692 0.25-1.2188 0.09479-0.14218 0.2606-0.29106 0.4375-0.3125l0.1875-0.03125a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-0.2187-0.8122a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0
-0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0h-0.125zm2.625 0a0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.8125a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125l0.1875 0.03125c0.1763 0.02137 0.34004 0.16632 0.4375 0.3125 0.15152 0.25187 0.16834 0.70846 0.21875 1.2188 0.045371 0.45927 0.25111 0.95529 0.625 1.375-0.37736 0.42003-0.57958 0.91432-0.625 1.375-0.05172 0.52459-0.061149 0.97651-0.21875 1.2187-0.095677 0.14352-0.25626 0.29053-0.4375 0.3125h-0.1875a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25
002 0 0 0 -0.03125 0.125l0.1875 0.84375a0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.0625 0l0.125-0.03125c0.00614-0.0004 0.02486 0.000497 0.03125 0 0.23237-0.01808 0.62385-0.0846 1-0.375 0.3865-0.29839 0.72937-0.83804 0.8125-1.6562 0.03054-0.29669 0.04635-0.56656 0.09375-0.8125s0.12182-0.45534 0.3125-0.59375c0.07296-0.05211 0.15827-0.07303 0.25-0.09375h0.03125l0.125-0.03125a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-0.8125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.125-0.03125c-0.27587-0.04696-0.53876-0.2383-0.625-0.8125-0.0011-0.0092 0.0011-0.02193 0-0.03125-0.02172-0.18821-0.04698-0.41542-0.0625-0.625-0.07836-0.82274-0.40221
-1.3443-0.78125-1.6562-0.37904-0.31194-0.80161-0.41818-1.0625-0.4375h-0.125a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignCentersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignCenter.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignCenter.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignCenter.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="7.9996" height="2.0002" x="4.0002" y="2.9998" class="filled"/>
- <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" class="filled"/>
- <rect width="3.9996" height="2.0002" x="6.0002" y="11" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="7.9996" height="2.0002" x="4.0002" y="2.9998"/>
+ <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998"/>
+ <rect width="3.9996" height="2.0002" x="6.0002" y="11"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignJustifysvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignJustify.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignJustify.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignJustify.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="9.9996" height="2.0002" x="3.0002" y="2.9998" class="filled"/>
- <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" class="filled"/>
- <rect width="9.9996" height="2.0002" x="3.0002" y="11" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="9.9996" height="2.0002" x="3.0002" y="2.9998"/>
+ <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998"/>
+ <rect width="9.9996" height="2.0002" x="3.0002" y="11"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignLeftsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignLeft.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignLeft.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignLeft.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="7.9996" height="2.0002" x="3.0002" y="2.9998" class="filled"/>
- <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" class="filled"/>
- <rect width="3.9996" height="2.0002" x="3.0002" y="11" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="7.9996" height="2.0002" x="3.0002" y="2.9998"/>
+ <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998"/>
+ <rect width="3.9996" height="2.0002" x="3.0002" y="11"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextAlignRightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignRight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignRight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextAlignRight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="7.9996" height="2.0002" x="5.0002" y="2.9998" class="filled"/>
- <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998" class="filled"/>
- <rect width="4" height="2.0002" x="8.9998" y="11" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="7.9996" height="2.0002" x="5.0002" y="2.9998"/>
+ <rect width="9.9996" height="2.0002" x="3.0002" y="6.9998"/>
+ <rect width="4" height="2.0002" x="8.9998" y="11"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationLineThroughsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationLineThrough.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationLineThrough.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationLineThrough.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m3.9999 3v2h6c0.42816 0 1 0.61414 1 1h2c0-1.6343-1.3198-3-3-3h-6zm-1 7c0.006 0.72062 0.26893 1.4527 0.78125 2.0312 0.5123 0.579 1.3104 0.969 2.2187 0.969h6 1v-1-2h-2v1h-5c-0.3979 0-0.5669-0.11-0.7187-0.281-0.1519-0.172-0.2788-0.44-0.2813-0.719h-2z" class="filled"/>
- <path d="m1 7v2h14v-2h-14z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m3.9999 3v2h6c0.42816 0 1 0.61414 1 1h2c0-1.6343-1.3198-3-3-3h-6zm-1 7c0.006 0.72062 0.26893 1.4527 0.78125 2.0312 0.5123 0.579 1.3104 0.969 2.2187 0.969h6 1v-1-2h-2v1h-5c-0.3979 0-0.5669-0.11-0.7187-0.281-0.1519-0.172-0.2788-0.44-0.2813-0.719h-2z"/>
+ <path d="m1 7v2h14v-2h-14z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationOverlinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationOverline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationOverline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationOverline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4 4v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3102-0.75 2.0312s0.2689 1.453 0.7812 2.031c0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.11-0.7188-0.281-0.1518-0.172-0.2787-0.44-0.2812-0.719s0.1047-0.554 0.25-0.719 0.3276-0.281 0.75-0.281z" class="filled"/>
- <path d="m2 1v2h12v-2h-12z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4 4v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3102-0.75 2.0312s0.2689 1.453 0.7812 2.031c0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.11-0.7188-0.281-0.1518-0.172-0.2787-0.44-0.2812-0.719s0.1047-0.554 0.25-0.719 0.3276-0.281 0.75-0.281z"/>
+ <path d="m2 1v2h12v-2h-12z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextDecorationUnderlinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationUnderline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationUnderline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextDecorationUnderline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4 2v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3106-0.75 2.0312s0.2689 1.453 0.7812 2.031c0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.1098-0.7188-0.2812-0.1518-0.1715-0.2787-0.4394-0.2812-0.7188s0.1047-0.5535 0.25-0.7188c0.1453-0.1652 0.3276-0.2812 0.75-0.2812z" class="filled"/>
- <path d="m2 13v2h12v-2h-12z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4 2v2h6c0.42816 0 1 0.61414 1 1v1h-5c-0.9193 0-1.7356 0.384-2.25 0.9688-0.5144 0.5847-0.7564 1.3106-0.75 2.0312s0.2689 1.453 0.7812 2.031c0.5124 0.579 1.3105 0.969 2.2188 0.969h6 1v-1-6c0-1.6343-1.32-3-3-3h-6zm2 6h5v2h-5c-0.3979 0-0.5669-0.1098-0.7188-0.2812-0.1518-0.1715-0.2787-0.4394-0.2812-0.7188s0.1047-0.5535 0.25-0.7188c0.1453-0.1652 0.3276-0.2812 0.75-0.2812z"/>
+ <path d="m2 13v2h12v-2h-12z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformCapitalizesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformCapitalize.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformCapitalize.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformCapitalize.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.331 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z" class="filled"/>
- <path d="m10.184 5.5v6.2249 0.77509h0.77509 1.5502c0.72746 0 1.3816-0.29632 1.7924-0.75086 0.4108-0.45455 0.58898-1.0329 0.58132-1.5986-0.008-0.5652-0.221-1.1265-0.63-1.5739-0.408-0.4473-1.03-0.7508-1.744-0.7508h-0.77509v-2.3253h-1.5502zm1.5502 3.8754h0.77509c0.32692 0 0.48028 0.10499 0.60554 0.24221s0.2151 0.34332 0.21799 0.55709c0.0029 0.21378-0.07625 0.40283-0.19377 0.53287s-0.27418 0.24222-0.62976 0.24222h-0.77509v-1.5744z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.331 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z"/>
+ <path d="m10.184 5.5v6.2249 0.77509h0.77509 1.5502c0.72746 0 1.3816-0.29632 1.7924-0.75086 0.4108-0.45455 0.58898-1.0329 0.58132-1.5986-0.008-0.5652-0.221-1.1265-0.63-1.5739-0.408-0.4473-1.03-0.7508-1.744-0.7508h-0.77509v-2.3253h-1.5502zm1.5502 3.8754h0.77509c0.32692 0 0.48028 0.10499 0.60554 0.24221s0.2151 0.34332 0.21799 0.55709c0.0029 0.21378-0.07625 0.40283-0.19377 0.53287s-0.27418 0.24222-0.62976 0.24222h-0.77509v-1.5744z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformLowercasesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformLowercase.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformLowercase.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformLowercase.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.5121 6.2993v1.5502h1.4775c-0.042771 0 0.072664 0.10835 0.072664 0.048443v0.72664h-0.77509c-1.33 0-2.3546 0.88446-2.3737 1.9377-0.00955 0.52663 0.24764 1.0489 0.6782 1.4048 0.4306 0.356 1.0151 0.533 1.6955 0.533h1.5502 0.77509v-0.77509-3.827c0-0.90777-0.69518-1.5986-1.6228-1.5986h-1.4775zm0.77509 3.8754h0.77509v0.77509h-0.77509c-0.40259 0-0.60466-0.11294-0.70242-0.19377-0.097767-0.08083-0.12212-0.11377-0.12111-0.16955 0.00202-0.11155 0.071858-0.41176 0.82353-0.41176z" class="filled"/>
- <path d="m8.3876 5.5v6.2249 0.77509h0.77509 1.5502c0.72746 0 1.3816-0.2721 1.7924-0.72664 0.4108-0.45455 0.58898-1.0572 0.58132-1.6228-0.0077-0.56567-0.22141-1.127-0.62976-1.5744-0.40834-0.44736-1.0301-0.75086-1.7439-0.75086h-0.77509v-2.3253h-1.5502zm1.5502 3.8754h0.77509c0.32692 0 0.48028 0.10499 0.60554 0.24221 0.12526 0.13723 0.2151 0.34332 0.21799 0.55709 0.0029 0.21378-0.07625 0.42705-0.19377 0.55709s-0.27418 0.21799-0.62976 0.21799h-0.77509v-1.5744z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.5121 6.2993v1.5502h1.4775c-0.042771 0 0.072664 0.10835 0.072664 0.048443v0.72664h-0.77509c-1.33 0-2.3546 0.88446-2.3737 1.9377-0.00955 0.52663 0.24764 1.0489 0.6782 1.4048 0.4306 0.356 1.0151 0.533 1.6955 0.533h1.5502 0.77509v-0.77509-3.827c0-0.90777-0.69518-1.5986-1.6228-1.5986h-1.4775zm0.77509 3.8754h0.77509v0.77509h-0.77509c-0.40259 0-0.60466-0.11294-0.70242-0.19377-0.097767-0.08083-0.12212-0.11377-0.12111-0.16955 0.00202-0.11155 0.071858-0.41176 0.82353-0.41176z"/>
+ <path d="m8.3876 5.5v6.2249 0.77509h0.77509 1.5502c0.72746 0 1.3816-0.2721 1.7924-0.72664 0.4108-0.45455 0.58898-1.0572 0.58132-1.6228-0.0077-0.56567-0.22141-1.127-0.62976-1.5744-0.40834-0.44736-1.0301-0.75086-1.7439-0.75086h-0.77509v-2.3253h-1.5502zm1.5502 3.8754h0.77509c0.32692 0 0.48028 0.10499 0.60554 0.24221 0.12526 0.13723 0.2151 0.34332 0.21799 0.55709 0.0029 0.21378-0.07625 0.42705-0.19377 0.55709s-0.27418 0.21799-0.62976 0.21799h-0.77509v-1.5744z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTextTransformUppercasesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformUppercase.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformUppercase.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TextTransformUppercase.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m3.3477 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z" class="filled"/>
- <path d="m9.2007 3.5v9h3.9094c0.84517 0 1.6045-0.34319 2.0812-0.87188 0.47676-0.52868 0.68389-1.1989 0.675-1.8562-0.009-0.65738-0.25732-1.3078-0.73125-1.8281-0.18416-0.2022-0.42169-0.36779-0.675-0.50625 0.21554-0.41233 0.45462-0.81705 0.45-1.2656-0.0067-0.64759-0.21118-1.3113-0.675-1.8281-0.464-0.517-1.208-0.8439-2.025-0.8439zm1.8 1.8h1.2094c0.36227 0 0.53783 0.10027 0.675 0.25312 0.13717 0.15286 0.22247 0.4015 0.225 0.64688 0.0023 0.24538-0.06648 0.47235-0.19688 0.61875-0.13038 0.1464-0.31556 0.25313-0.70312 0.25313h-1.2094zm0 3.5719h2.1094c0.37913 0 0.55745 0.12132 0.70312 0.28125 0.14568 0.15994 0.24975 0.39722 0.25312 0.64687 0.0035 0.24966-0.08832 0.46716-0.225 0.61875-0.136 0.151-0.319 0.281-0.731 0.281h-2.1094z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m3.3477 3.5-3.2143 9h1.9286c0.95538-2.5714 0.01422 0 0.96959-2.5714h3.2037l0.96958 2.5714h1.9286l-3.2143-9zm1.2857 1.9286 1.2999 3.2143h-2.5714z"/>
+ <path d="m9.2007 3.5v9h3.9094c0.84517 0 1.6045-0.34319 2.0812-0.87188 0.47676-0.52868 0.68389-1.1989 0.675-1.8562-0.009-0.65738-0.25732-1.3078-0.73125-1.8281-0.18416-0.2022-0.42169-0.36779-0.675-0.50625 0.21554-0.41233 0.45462-0.81705 0.45-1.2656-0.0067-0.64759-0.21118-1.3113-0.675-1.8281-0.464-0.517-1.208-0.8439-2.025-0.8439zm1.8 1.8h1.2094c0.36227 0 0.53783 0.10027 0.675 0.25312 0.13717 0.15286 0.22247 0.4015 0.225 0.64688 0.0023 0.24538-0.06648 0.47235-0.19688 0.61875-0.13038 0.1464-0.31556 0.25313-0.70312 0.25313h-1.2094zm0 3.5719h2.1094c0.37913 0 0.55745 0.12132 0.70312 0.28125 0.14568 0.15994 0.24975 0.39722 0.25312 0.64687 0.0035 0.24966-0.08832 0.46716-0.225 0.61875-0.136 0.151-0.319 0.281-0.731 0.281h-2.1094z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Time.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Time.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Time.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m8 2c-3.3101 0-6 2.6899-6 6 0 3.31 2.6899 6 6 6 3.31 0 6-2.69 6-6 0-3.3101-2.69-6-6-6zm0 1.5814c2.4439 0 4.4186 1.9747 4.4186 4.4186s-1.9747 4.4186-4.4186 4.4186-4.4186-1.9747-4.4186-4.4186 1.9747-4.4186 4.4186-4.4186z" class="filled"/>
- <path d="m10.329 5.195a0.40076 0.40076 0 0 0 -0.2 0.1252l-2.129 2.1288-1.3274-1.3274a0.40076 0.40076 0 1 0 -0.551 0.551l1.6029 1.6029a0.40076 0.40076 0 0 0 0.55098 0l2.4045-2.4043a0.40076 0.40076 0 0 0 -0.351 -0.6762z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m8 2c-3.3101 0-6 2.6899-6 6 0 3.31 2.6899 6 6 6 3.31 0 6-2.69 6-6 0-3.3101-2.69-6-6-6zm0 1.5814c2.4439 0 4.4186 1.9747 4.4186 4.4186s-1.9747 4.4186-4.4186 4.4186-4.4186-1.9747-4.4186-4.4186 1.9747-4.4186 4.4186-4.4186z"/>
+ <path d="m10.329 5.195a0.40076 0.40076 0 0 0 -0.2 0.1252l-2.129 2.1288-1.3274-1.3274a0.40076 0.40076 0 1 0 -0.551 0.551l1.6029 1.6029a0.40076 0.40076 0 0 0 0.55098 0l2.4045-2.4043a0.40076 0.40076 0 0 0 -0.351 -0.6762z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelinesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Timeline.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Timeline.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Timeline.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m8 3.1749e-7c-4.4135 0-8 3.5865-8 8 3.3715e-7 4.414 3.5865 8 8 8 4.414 0 8-3.586 8-8 0-4.4135-3.586-8-8-8zm0 2.1085c3.2585 0 5.8915 2.633 5.8915 5.8915s-2.6329 5.8915-5.8915 5.8915c-3.2585 0-5.8915-2.6329-5.8915-5.8915 0-3.2585 2.633-5.8915 5.8915-5.8915z" class="filled"/>
- <path d="m11.106 4.26a0.53434 0.53434 0 0 0 -0.268 0.1669l-2.838 2.8384-1.7698-1.7698a0.53434 0.53434 0 1 0 -0.7347 0.7347l2.1372 2.1372a0.53434 0.53434 0 0 0 0.73465 0l3.2056-3.2058a0.53434 0.53434 0 0 0 -0.467 -0.9016z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m8 3.1749e-7c-4.4135 0-8 3.5865-8 8 3.3715e-7 4.414 3.5865 8 8 8 4.414 0 8-3.586 8-8 0-4.4135-3.586-8-8-8zm0 2.1085c3.2585 0 5.8915 2.633 5.8915 5.8915s-2.6329 5.8915-5.8915 5.8915c-3.2585 0-5.8915-2.6329-5.8915-5.8915 0-3.2585 2.633-5.8915 5.8915-5.8915z"/>
+ <path d="m11.106 4.26a0.53434 0.53434 0 0 0 -0.268 0.1669l-2.838 2.8384-1.7698-1.7698a0.53434 0.53434 0 1 0 -0.7347 0.7347l2.1372 2.1372a0.53434 0.53434 0 0 0 0.73465 0l3.2056-3.2058a0.53434 0.53434 0 0 0 -0.467 -0.9016z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordAnimationsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordAnimation.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordAnimation.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordAnimation.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m7.1374 4.8508c-0.03291 0.00406-0.06499 0.014755-0.09375 0.03125-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125l-3 8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.09375 0.25002 0.25002 0 0 0 0.125 0.03125h1.375a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.75-1.9375h2.5938l0.75 1.9375a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4688a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.2500
2 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-3-8a0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 0h-1.375c-0.02072-0.00261-0.04178-0.00261-0.0625 0zm0.6875 2.6562 0.6875 1.9375h-1.3438l0.65625-1.9375z" display="block" class="filled"/>
- <path fill="url(#d)" d="m7.1892 3.8205c-0.03291 0.00406-0.06499 0.014755-0.09375 0.03125-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125l-3 8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.09375 0.25002 0.25002 0 0 0 0.125 0.03125h1.375a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.75-1.9375h2.5938l0.75 1.9375a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4688a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.2
5002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-3.0003-8.0002a0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 0h-1.375c-0.02072-0.00261-0.04178-0.00261-0.0625 0zm0.6875 2.6562 0.6875 1.9375h-1.3438l0.65625-1.9375z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m7.1374 4.8508c-0.03291 0.00406-0.06499 0.014755-0.09375 0.03125-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125l-3 8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.09375 0.25002 0.25002 0 0 0 0.125 0.03125h1.375a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.75-1.9375h2.5938l0.75 1.9375a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4688a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.2500
2 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-3-8a0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 0h-1.375c-0.02072-0.00261-0.04178-0.00261-0.0625 0zm0.6875 2.6562 0.6875 1.9375h-1.3438l0.65625-1.9375z" display="block"/>
+ <path fill="url(#d)" d="m7.1892 3.8205c-0.03291 0.00406-0.06499 0.014755-0.09375 0.03125-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.01131 0.00947-0.02178 0.019939-0.03125 0.03125l-3 8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.09375 0.25002 0.25002 0 0 0 0.125 0.03125h1.375a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625l0.75-1.9375h2.5938l0.75 1.9375a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4688a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.2
5002 0 0 0 0.0625 -0.125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125l-3.0003-8.0002a0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 0h-1.375c-0.02072-0.00261-0.04178-0.00261-0.0625 0zm0.6875 2.6562 0.6875 1.9375h-1.3438l0.65625-1.9375z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordCompositesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordComposite.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordComposite.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordComposite.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#8ae234" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.7986 3.7416c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.218-0.0628c-0.873-0.3467-1.6591-0.4688-2.3124-0.4688z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.7468 4.772c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.21875-0.0625c-0.871-0.3467-1.6578-0.4687-2.3112-0.4687z" display="block"/>
+ <path fill="url(#d)" d="m8.7986 3.7416c-2.707 0-4.5312 1.887-4.5312 4.3125 0 2.3868 1.7261 4.3438 4.4375 4.3438 0.77681 0 1.6598-0.16116 2.5312-0.53125l0.21875-0.09375a0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-0.46875-1.1562a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.1875 0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.58568 0.23206-1.1595 0.34375-1.625 0.34375-0.88382 0-1.5432-0.24749-2-0.6875-0.45679-0.44001-0.71875-1.0822-0.71875-1.875 0-1.408 0.89423-2.5312 2.5-2.5312 0.36888 0 0.90663 0.00178 1.75 0.3125l0.21875 0.0625a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.46875-1.125a0.2
5002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.218-0.0628c-0.873-0.3467-1.6591-0.4688-2.3124-0.4688z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordConsoleProfilesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordConsoleProfile.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordConsoleProfile.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordConsoleProfile.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3437c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.9871 3.8198c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.02758 0.02598-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.6875 1
.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3437c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
+ <path fill="url(#d)" d="m4.9871 3.8198c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.02758 0.02598-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.6875 1
.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordEventsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordEvent.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordEvent.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordEvent.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.1843 4.8494a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125h
-3.5625v-1.5938h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.250
02 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m5.2361 3.819a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.0625 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v8c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.02072 0.0026 0.04178 0.0026 0.0625 0 0.0104 0.000651 0.02085 0.000651 0.03125 0h5.2187a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.0312
5h-3.5625v-1.5937h3.1562a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125h-3.1562v-1.5h3.5625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-1.2812a0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.2
5002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-5.2187a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordLayoutsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordLayout.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordLayout.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordLayout.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.2146 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625v8a0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h5.2188a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.062
5 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-3.5313v-6.4375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.4375c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.3271 3.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625v8a0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h5.2188a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.06
25 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-3.5313v-6.4375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.4375c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.2146 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625v8a0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h5.2188a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.062
5 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-3.5313v-6.4375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.4375c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m5.3271 3.75c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625v8a0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h5.2188a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.06
25 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-3.5313v-6.4375a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125h-1.4375c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordPaintsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordPaint.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordPaint.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordPaint.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#8ae234" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
+ <path fill="url(#d)" d="m5.0479 3.75c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.00518 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.055769 2.6875-0.4375 0.8104-0.3818 1.4374-1.1251 1.4374-2.3438 0-1.1859-0.65393-1.9068-1.4062-2.25-0.7523-0.3432-1.5932-0.375-2.1249-0.
375h-2.625zm1.6875 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.037039 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordProbeSampledsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordProbeSampled.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordProbeSampled.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordProbeSampled.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3437c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.9871 3.8198c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.02758 0.02598-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.6875 1
.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.9353 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.02758 0.025975-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3437c0-1.1859-0.65393-1.9068-1.4062-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.68
75 1.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
+ <path fill="url(#d)" d="m4.9871 3.8198c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.02758 0.02598-0.04913 0.058305-0.0625 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.11491 0.0052 0.21821 0.03125 0.34375 0.03125 0.87733 0 1.8771-0.05577 2.6875-0.4375s1.4375-1.1251 1.4375-2.3438c0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.5933-0.375-2.125-0.375h-2.625zm1.6875 1
.8125h0.78125c0.50267 0 0.97982 0.028766 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36571 0.14038-0.93321 0.1875-1.5312 0.1875-0.14412 0-0.29053-0.021575-0.4375-0.03125v-1.7812z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordRenderingFramesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordRenderingFrame.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordRenderingFrame.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordRenderingFrame.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m5.2156 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-2.7812h3.0312a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-3.0312v-1.8438h3.4
688a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-5.1563a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m5.2673 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-2.7812h3.0313a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-3.0313v-1.8438h
3.4688a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-5.1563a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m5.2156 4.8511a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-2.7812h3.0312a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-3.0312v-1.8438h3.4
688a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-5.1563a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
+ <path fill="url(#d)" d="m5.2673 3.8207a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.09375 0.09375 0.25002 0.25002 0 0 0 -0.03125 0.09375 0.25002 0.25002 0 0 0 0 0.03125v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4375a0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.03125v-2.7812h3.0313a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.09375v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 0h-3.0313v-1.8438h
3.4688a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-1.3125a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-5.1563a0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordScriptEvaluatedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordScriptEvaluated.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordScriptEvaluated.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordScriptEvaluated.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.154 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0.491
93 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.4456-0.3912-1.0134-0.6241-1.5622-0.8124s-1.097-0.3332-1.4688-0.5c-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.2058 3.726c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.08092 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75
-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.446-0.3916-1.0136-0.6244-1.5624-0.8127-0.5488-0.1884-1.097-0.3333-1.4688-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.154 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0.491
93 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.4456-0.3912-1.0134-0.6241-1.5622-0.8124s-1.097-0.3332-1.4688-0.5c-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
+ <path fill="url(#d)" d="m8.2058 3.726c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.08092 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75
-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.446-0.3916-1.0136-0.6244-1.5624-0.8127-0.5488-0.1884-1.097-0.3333-1.4688-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordStylesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordStyle.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordStyle.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordStyle.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.1541 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125 0.080923 0.09198 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0
.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.2666 3.6562c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.080923 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2
.75-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7813 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.1541 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125 0.080923 0.09198 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0
.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
+ <path fill="url(#d)" d="m8.2666 3.6562c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.080923 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2
.75-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7813 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTimelineRecordTimersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordTimer.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordTimer.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TimelineRecordTimer.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.4812 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2812a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4688a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4688h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2812a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.533 3.8198c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2812a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4688a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4688h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2812a0.2500
2 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.4812 4.8501c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2812a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4688a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4688h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2812a0.25002
0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.533 3.8198c-0.02216 0.00743-0.04326 0.017981-0.0625 0.03125-0.03888 0.02211-0.07164 0.054868-0.09375 0.09375-0.01327 0.019236-0.02385 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625v1.2812a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.09375 0.125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h2.375v6.4688a0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.0625 0.09375 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.09375 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625v-6.4688h2.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0.03125 -0.0625v-1.2812a0.2500
2 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.09375 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0h-6.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkToggleLeftSidebarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleLeftSidebar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleLeftSidebar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleLeftSidebar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m13.5 1.5c1.0524 0 2 0.84508 2 1.9375v9.125c0 1.0924-0.94763 1.9375-2 1.9375h-11c-1.0524 0-2-0.84508-2-1.9375v-9.125c0-1.0919 0.9476-1.937 2-1.937zm-11 11h3v-8h-3" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m13.5 1.5c1.0524 0 2 0.84508 2 1.9375v9.125c0 1.0924-0.94763 1.9375-2 1.9375h-11c-1.0524 0-2-0.84508-2-1.9375v-9.125c0-1.0919 0.9476-1.937 2-1.937zm-11 11h3v-8h-3"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkToggleRightSidebarsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleRightSidebar.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleRightSidebar.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/ToggleRightSidebar.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m2.5 1.5c-1.0524 0-2 0.8451-2 1.9375v9.125c0 1.0924 0.94763 1.9375 2 1.9375h11c1.0524 0 2-0.84508 2-1.9375v-9.125c0-1.0919-0.948-1.937-2-1.937zm11 11h-3v-8h3" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m2.5 1.5c-1.0524 0-2 0.8451-2 1.9375v9.125c0 1.0924 0.94763 1.9375 2 1.9375h11c1.0524 0 2-0.84508 2-1.9375v-9.125c0-1.0919-0.948-1.937-2-1.937zm11 11h-3v-8h3"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeBooleansvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeBoolean.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeBoolean.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeBoolean.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#5c3566" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#ddc9db" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.8933 4.8521c-0.11423 0-0.15625 0.077737-0.15625 0.1875v8.0938c0 0.13608 0.12063 0.21875 0.25 0.21875h2.5c1.5451 0 2.5098-0.33018 3.0937-0.8125 0.58395-0.48232 0.75-1.1169 0.75-1.625 0-0.80263-0.55943-1.6348-1.5312-2 0.57997-0.46987 0.90625-1.0439 0.90625-1.7188 0-0.41205-0.1117-1.0116-0.5625-1.5-0.4508-0.48837-1.2246-0.84375-2.4375-0.84375zm1.75 1.75h0.875c0.55971 0.01043 0.89623 0.12774 1.0625 0.25 0.17556 0.12909 0.25 0.27137 0.25 0.53125 0 0.26622-0.06532 0.40388-0.25 0.53125s-0.52487 0.21875-1.0625 0.21875h-0.875zm0.59375 3.2188c0.065135 0.00154 0.14025 0 0.1875 0 0.75806 0.011439 1.3016 0.12385 1.5938 0.28125 0.30884 0.16639 0.40625 0.36589 0.40625 0.65625 0 0.36264-0.13114 0.48727-0.46875 0.625s-0.90482 0.21875-1.625 0.21875h-0.6875v-1.75z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.8933 3.8217c-0.11423 0-0.15625 0.077737-0.15625 0.1875v8.0938c0 0.13608 0.12063 0.21875 0.25 0.21875h2.5c1.5451 0 2.5098-0.33018 3.0937-0.8125 0.58395-0.48232 0.75-1.1169 0.75-1.625 0-0.80263-0.55943-1.6348-1.5312-2 0.57997-0.46987 0.90625-1.0439 0.90625-1.7188 0-0.41205-0.1117-1.0116-0.5625-1.5-0.4508-0.48837-1.2246-0.84375-2.4375-0.84375zm1.75 1.75h0.875c0.55971 0.01043 0.89623 0.12774 1.0625 0.25 0.17556 0.12909 0.25 0.27137 0.25 0.53125 0 0.26622-0.06532 0.40388-0.25 0.53125s-0.52487 0.21875-1.0625 0.21875h-0.875zm0.59375 3.2188c0.065135 0.00154 0.14025 0 0.1875 0 0.75806 0.011439 1.3016 0.12385 1.5938 0.28125 0.30884 0.16639 0.40625 0.36589 0.40625 0.65625 0 0.36263-0.13114 0.48727-0.46875 0.625s-0.90482 0.21875-1.625 0.21875h-0.6875v-1.75z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.8933 4.8521c-0.11423 0-0.15625 0.077737-0.15625 0.1875v8.0938c0 0.13608 0.12063 0.21875 0.25 0.21875h2.5c1.5451 0 2.5098-0.33018 3.0937-0.8125 0.58395-0.48232 0.75-1.1169 0.75-1.625 0-0.80263-0.55943-1.6348-1.5312-2 0.57997-0.46987 0.90625-1.0439 0.90625-1.7188 0-0.41205-0.1117-1.0116-0.5625-1.5-0.4508-0.48837-1.2246-0.84375-2.4375-0.84375zm1.75 1.75h0.875c0.55971 0.01043 0.89623 0.12774 1.0625 0.25 0.17556 0.12909 0.25 0.27137 0.25 0.53125 0 0.26622-0.06532 0.40388-0.25 0.53125s-0.52487 0.21875-1.0625 0.21875h-0.875zm0.59375 3.2188c0.065135 0.00154 0.14025 0 0.1875 0 0.75806 0.011439 1.3016 0.12385 1.5938 0.28125 0.30884 0.16639 0.40625 0.36589 0.40625 0.65625 0 0.36264-0.13114 0.48727-0.46875 0.625s-0.90482 0.21875-1.625 0.21875h-0.6875v-1.75z" display="block"/>
+ <path fill="url(#d)" d="m4.8933 3.8217c-0.11423 0-0.15625 0.077737-0.15625 0.1875v8.0938c0 0.13608 0.12063 0.21875 0.25 0.21875h2.5c1.5451 0 2.5098-0.33018 3.0937-0.8125 0.58395-0.48232 0.75-1.1169 0.75-1.625 0-0.80263-0.55943-1.6348-1.5312-2 0.57997-0.46987 0.90625-1.0439 0.90625-1.7188 0-0.41205-0.1117-1.0116-0.5625-1.5-0.4508-0.48837-1.2246-0.84375-2.4375-0.84375zm1.75 1.75h0.875c0.55971 0.01043 0.89623 0.12774 1.0625 0.25 0.17556 0.12909 0.25 0.27137 0.25 0.53125 0 0.26622-0.06532 0.40388-0.25 0.53125s-0.52487 0.21875-1.0625 0.21875h-0.875zm0.59375 3.2188c0.065135 0.00154 0.14025 0 0.1875 0 0.75806 0.011439 1.3016 0.12385 1.5938 0.28125 0.30884 0.16639 0.40625 0.36589 0.40625 0.65625 0 0.36263-0.13114 0.48727-0.46875 0.625s-0.90482 0.21875-1.625 0.21875h-0.6875v-1.75z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeNullsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNull.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNull.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNull.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#888a85" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.3406 4.8501c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.0625
0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4063a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002
0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.3923 3.8198c-0.03291 0.00406-0.06499 0.014754-0.09375 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.01131 0.00947-0.02175 0.019939-0.03125 0.03125-0.0165 0.028765-0.02715 0.060841-0.03125 0.09375-0.0026 0.020724-0.0026 0.041776 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7188a0.25002 0.25002 0 0 0 0.06
25 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25
002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.00261-0.04178-0.00261-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeNumbersvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNumber.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNumber.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeNumber.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#bdd2e9" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.3406 4.8516c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.0165 0.02876-0.02715 0.06084-0.03125 0.09375-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7187a0.25002 0.25002 0 0 0 0.0625 0 0.25002
0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0
0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.0026-0.04178-0.0026-0.0625 0z" display="block" class="filled"/>
- <path fill="url(#d)" d="m4.3923 3.8212c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.0165 0.02876-0.02715 0.06084-0.03125 0.09375-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7187a0.25002 0.25002 0 0 0 0.0625 0 0.250
02 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0937l-3.4063-5.2187a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.2500
2 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.0026-0.04178-0.0026-0.0625 0z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.3406 4.8516c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.0165 0.02876-0.02715 0.06084-0.03125 0.09375-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7187a0.25002 0.25002 0 0 0 0.0625 0 0.25002
0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0938l-3.4062-5.2188a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0
0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.0026-0.04178-0.0026-0.0625 0z" display="block"/>
+ <path fill="url(#d)" d="m4.3923 3.8212c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.01131 0.0095-0.02175 0.01994-0.03125 0.03125-0.0165 0.02876-0.02715 0.06084-0.03125 0.09375-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.4062a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-5.0938l3.375 5.25a0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.0625 0h1.7187a0.25002 0.25002 0 0 0 0.0625 0 0.250
02 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125v-8a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.4062a0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.0625 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 -0.03125 0.0625 0.25002 0.25002 0 0 0 0 0.0625v5.0937l-3.4063-5.2187a0.25002 0.25002 0 0 0 -0.0625 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0 0.25002 0.2500
2 0 0 0 -0.0625 -0.03125 0.25002 0.25002 0 0 0 -0.03125 0h-1.6875c-0.02072-0.0026-0.04178-0.0026-0.0625 0z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeObjectsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeObject.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeObject.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeObject.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#c4a000" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#fef4a8" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m7.8406 4.8481c-1.0313 0-2.0592 0.3724-2.8438 1.0938-0.78455 0.72136-1.3125 1.7985-1.3125 3.2188 0 2.5548 1.7963 4.2328 4.0625 4.3125 0.12663 0.0073 0.20674 0.0078 0.3125 0 2.2396-0.0781 4.0313-1.6975 4.0313-4.2187 0-2.5923-1.8447-4.4062-4.25-4.4062zm0.093751 1.8125c0.52438 0 1.0551 0.16546 1.4688 0.5625 0.41369 0.39704 0.71875 1.0121 0.71875 1.9375 0 0.93418-0.31504 1.5672-0.75 1.9687-0.42725 0.39438-0.97727 0.58735-1.5 0.59375-0.021472-0.000857-0.042558 0-0.0625 0-0.52756-0.0065-1.0657-0.18202-1.4688-0.5625-0.41058-0.38755-0.6875-0.99125-0.6875-1.875 0-1.6692 1.0047-2.625 2.2813-2.625z" display="block" class="filled"/>
- <path fill="url(#d)" d="m7.8923 3.8178c-1.0313 0-2.0592 0.3724-2.8438 1.0938-0.78455 0.72136-1.3125 1.7985-1.3125 3.2188 0 2.5548 1.7963 4.2328 4.0625 4.3125 0.12663 0.0073 0.20674 0.0078 0.3125 0 2.2396-0.0781 4.0313-1.6975 4.0313-4.2188 0-2.5923-1.8447-4.4062-4.25-4.4062zm0.093751 1.8125c0.52438 0 1.0551 0.16546 1.4688 0.5625 0.41369 0.39704 0.71875 1.0121 0.71875 1.9375 0 0.93418-0.31504 1.5672-0.75 1.9688-0.42725 0.39438-0.97727 0.58735-1.5 0.59375-0.021472-0.000857-0.042558 0-0.0625 0-0.52756-0.0065-1.0657-0.18202-1.4688-0.5625-0.41058-0.38756-0.6875-0.99125-0.6875-1.875 0-1.6692 1.0047-2.625 2.2813-2.625z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m7.8406 4.8481c-1.0313 0-2.0592 0.3724-2.8438 1.0938-0.78455 0.72136-1.3125 1.7985-1.3125 3.2188 0 2.5548 1.7963 4.2328 4.0625 4.3125 0.12663 0.0073 0.20674 0.0078 0.3125 0 2.2396-0.0781 4.0313-1.6975 4.0313-4.2187 0-2.5923-1.8447-4.4062-4.25-4.4062zm0.093751 1.8125c0.52438 0 1.0551 0.16546 1.4688 0.5625 0.41369 0.39704 0.71875 1.0121 0.71875 1.9375 0 0.93418-0.31504 1.5672-0.75 1.9687-0.42725 0.39438-0.97727 0.58735-1.5 0.59375-0.021472-0.000857-0.042558 0-0.0625 0-0.52756-0.0065-1.0657-0.18202-1.4688-0.5625-0.41058-0.38755-0.6875-0.99125-0.6875-1.875 0-1.6692 1.0047-2.625 2.2813-2.625z" display="block"/>
+ <path fill="url(#d)" d="m7.8923 3.8178c-1.0313 0-2.0592 0.3724-2.8438 1.0938-0.78455 0.72136-1.3125 1.7985-1.3125 3.2188 0 2.5548 1.7963 4.2328 4.0625 4.3125 0.12663 0.0073 0.20674 0.0078 0.3125 0 2.2396-0.0781 4.0313-1.6975 4.0313-4.2188 0-2.5923-1.8447-4.4062-4.25-4.4062zm0.093751 1.8125c0.52438 0 1.0551 0.16546 1.4688 0.5625 0.41369 0.39704 0.71875 1.0121 0.71875 1.9375 0 0.93418-0.31504 1.5672-0.75 1.9688-0.42725 0.39438-0.97727 0.58735-1.5 0.59375-0.021472-0.000857-0.042558 0-0.0625 0-0.52756-0.0065-1.0657-0.18202-1.4688-0.5625-0.41058-0.38756-0.6875-0.99125-0.6875-1.875 0-1.6692 1.0047-2.625 2.2813-2.625z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeRegexsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeRegex.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeRegex.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeRegex.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#a40000" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m4.8241 4.7808c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.02758 0.02597-0.04913 0.0583-0.0625 0.09375-0.000652 0.0104-0.000652 0.02085 0 0.03125-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.0059 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.0053 0.5 0l1.75 2.9688a0.25002 0.250
02 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9062-3.1252c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.000652-0.02085-0.000652-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.02877 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.02084-0.46875-0.03125v-1.7812z" display="bl
ock" class="filled"/>
- <path fill="url(#d)" d="m4.8759 3.7505c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.02758 0.02597-0.04913 0.0583-0.0625 0.09375-0.000652 0.0104-0.000652 0.02085 0 0.03125-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.00594 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.00525 0.5 0l1.75 2.9688a0.25002
0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9064-3.1245c0.4088-0.1631 0.8264-0.3517 1.1254-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.000651-0.02085-0.000651-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.02877 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.02084-0.46875-0.03125v-1.7812z" display="
;block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m4.8241 4.7808c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.02758 0.02597-0.04913 0.0583-0.0625 0.09375-0.000652 0.0104-0.000652 0.02085 0 0.03125-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.0059 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.0053 0.5 0l1.75 2.9688a0.25002 0.250
02 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9062-3.1252c0.40877-0.16309 0.82622-0.3517 1.125-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.000652-0.02085-0.000652-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.02877 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.02084-0.46875-0.03125v-1.7812z" display="bl
ock"/>
+ <path fill="url(#d)" d="m4.8759 3.7505c-0.03291 0.0041-0.06499 0.01475-0.09375 0.03125-0.02216 0.0074-0.04326 0.01798-0.0625 0.03125-0.02758 0.02597-0.04913 0.0583-0.0625 0.09375-0.000652 0.0104-0.000652 0.02085 0 0.03125-0.0026 0.02072-0.0026 0.04178 0 0.0625v8a0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.09375 0.03125 0.25002 0.25002 0 0 0 0.03125 0h1.4062a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.09375 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125 0.25002 0.25002 0 0 0 0 -0.03125v-2.875c0.12483 0.00594 0.2381 0.03125 0.375 0.03125 0.14931 0 0.32427 0.00525 0.5 0l1.75 2.9688a0.25002
0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.0625 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0h1.625a0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.03125 0 0.25002 0.25002 0 0 0 0.0625 -0.03125 0.25002 0.25002 0 0 0 0.0625 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125 0.25002 0.25002 0 0 0 0.03125 -0.09375 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.03125 -0.09375l-1.9064-3.1245c0.4088-0.1631 0.8264-0.3517 1.1254-0.6875 0.36559-0.41089 0.59375-0.96258 0.59375-1.6875 0-1.1859-0.65393-1.9068-1.4063-2.25-0.75232-0.34325-1.6246-0.375-2.1562-0.375h-2.5938c-0.0104-0.000651-0.02085-0.000651-0.03125 0zm1.6875 1.8125h0.8125c0.50267 0 0.97982 0.02877 1.2812 0.15625 0.30143 0.12748 0.4375 0.27798 0.4375 0.6875 0 0.23499-0.03704 0.38143-0.125 0.5s-0.22339 0.21106-0.40625 0.28125c-0.36572 0.14038-0.93321 0.1875-1.5312 0.1875-0.15438 0-0.31008-0.02084-0.46875-0.03125v-1.7812z" display="
;block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeStringsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeString.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeString.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeString.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <radialGradient id="b" cx="301" cy="51.5" r="19.5" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.97063 1.9684e-8 0 .28611 -291.16 -14.63)">
</span><span class="cx"> <stop stop-color="#fff" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#f9adad" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.1541 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125 0.080923 0.09198 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0
.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.2666 3.6562c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.080923 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2
.75-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7813 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.1541 4.7563c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125 0.080923 0.09198 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0
.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
+ <path fill="url(#d)" d="m8.2666 3.6562c-0.9594 0-1.7722 0.24647-2.3438 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4687 0.5 0.18307 0.086072 0.32533 0.18927 0.40625 0.28125 0.080923 0.091977 0.09673 0.15012 0.09375 0.28125 0 0.18652-0.090379 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0938-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2
.75-0.8125 0.57818-0.49193 0.8125-1.1637 0.8125-1.7813 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4687-0.5-0.18586-0.083381-0.32338-0.165-0.40625-0.25-0.08287-0.085001-0.125-0.17508-0.125-0.28125 0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9062 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2813a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.29122-0.093605-1.1271-0.46875-2.4375-0.46875z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeSymbolsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeSymbol.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeSymbol.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeSymbol.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#069a6b" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#b2f4df" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m8.1237 4.8417c-0.9594 0-1.7722 0.24647-2.3437 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4688 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0937-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0.49
193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4688-0.5-0.18586-0.08338-0.32338-0.165-0.40625-0.25s-0.125-0.17508-0.125-0.28125c0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9063 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2812a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.292-0.0921-1.1279-0.4673-2.4383-0.4673z" display="block" class="filled"/>
- <path fill="url(#d)" d="m8.2362 3.7416c-0.9594 0-1.7722 0.24647-2.3437 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4688 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0937-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0
.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4688-0.5-0.18586-0.08338-0.32338-0.165-0.40625-0.25s-0.125-0.17508-0.125-0.28125c0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9063 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2812a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.291-0.0922-1.1273-0.4674-2.4378-0.4674z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m8.1237 4.8417c-0.9594 0-1.7722 0.24647-2.3437 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4688 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0937-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0.49
193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4688-0.5-0.18586-0.08338-0.32338-0.165-0.40625-0.25s-0.125-0.17508-0.125-0.28125c0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9063 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2812a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.292-0.0921-1.1279-0.4673-2.4383-0.4673z" display="block"/>
+ <path fill="url(#d)" d="m8.2362 3.7416c-0.9594 0-1.7722 0.24647-2.3437 0.6875-0.57159 0.44103-0.875 1.0875-0.875 1.8125 0 0.76738 0.30008 1.3618 0.75 1.75 0.44992 0.38821 1.0123 0.59908 1.5625 0.78125 0.55019 0.18217 1.1026 0.32786 1.4688 0.5 0.18307 0.08607 0.32533 0.18927 0.40625 0.28125s0.09673 0.15012 0.09375 0.28125c0 0.18652-0.09038 0.35419-0.34375 0.5s-0.67085 0.25-1.1562 0.25c-0.38979 0-1.0737-0.12598-2.0937-0.5l-0.1875-0.0625a0.25002 0.25002 0 0 0 -0.09375 -0.03125 0.25002 0.25002 0 0 0 -0.0625 0 0.25002 0.25002 0 0 0 -0.15625 0.125 0.25002 0.25002 0 0 0 -0.03125 0.03125l-0.46875 1.3125a0.25002 0.25002 0 0 0 -0.03125 0.03125 0.25002 0.25002 0 0 0 0 0.0625 0.25002 0.25002 0 0 0 0.03125 0.09375 0.25002 0.25002 0 0 0 0.03125 0.0625 0.25002 0.25002 0 0 0 0.03125 0.03125 0.25002 0.25002 0 0 0 0.0625 0.03125 0.25002 0.25002 0 0 0 0.03125 0l0.1875 0.09375v-0.03125c0.77838 0.30206 1.5983 0.59375 2.6562 0.59375 1.2747 0 2.1718-0.32057 2.75-0.8125 0.57818-0
.49193 0.8125-1.1637 0.8125-1.7812 0-0.75379-0.30407-1.2962-0.75-1.6875-0.44593-0.39134-1.0137-0.62417-1.5625-0.8125-0.54881-0.18833-1.097-0.33324-1.4688-0.5-0.18586-0.08338-0.32338-0.165-0.40625-0.25s-0.125-0.17508-0.125-0.28125c0-0.20152 0.09694-0.33345 0.3125-0.46875s0.58083-0.25 1.0312-0.25c0.6839 0 1.2751 0.18955 1.9063 0.4375a0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.0625 0 0.25002 0.25002 0 0 0 0.09375 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.0625 0.25002 0.25002 0 0 0 0.03125 -0.03125l0.4375-1.2812a0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 0 -0.0625 0.25002 0.25002 0 0 0 -0.0625 -0.09375 0.25002 0.25002 0 0 0 -0.0625 -0.03125l-0.15625-0.0625a0.25002 0.25002 0 0 0 -0.03125 0c-0.291-0.0922-1.1273-0.4674-2.4378-0.4674z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkTypeUndefinedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeUndefined.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeUndefined.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/TypeUndefined.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
</ins><span class="cx"> <defs>
</span><span class="cx"> <linearGradient id="d" x1="491.22" x2="491.22" y1="506.65" y2="732.05" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.093294 0 0 .093294 -35.871 -43.769)">
</span><span class="cx"> <stop stop-color="#888a85" offset="0"/>
</span><span class="lines">@@ -19,9 +19,9 @@
</span><span class="cx"> <stop stop-color="#d3d7cf" offset="1"/>
</span><span class="cx"> </linearGradient>
</span><span class="cx"> </defs>
</span><del>- <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel" class="filled"/>
- <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812" class="stroked"/>
- <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062" class="filled"/>
- <path fill="#fff" d="m7.029 4.8559c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0.62
5c-0.5601 0.4839-1.1564 1.1824-1.1564 2.5v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000652 0.02085 0.000652 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42536 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1563-1.1016 1.1563-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9687c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.0625v1
.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000651-0.02085-0.000651-0.03125 0h-1.5z" display="block" class="filled"/>
- <path fill="url(#d)" d="m7.0808 3.8256c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875
0.625c-0.5601 0.4839-1.1564 1.1824-1.1564 2.5003v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000651 0.02085 0.000651 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42537 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1563-1.1016 1.1563-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.3437 6.9684c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.
0625v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000652-0.02085-0.000652-0.03125 0h-1.5z" display="block" class="filled"/>
</del><ins>+ <rect width="15.004" height="15.003" x=".49815" y=".49833" fill="url(#a)" fill-rule="evenodd" stroke="url(#c)" stroke-miterlimit="10" rx="1.5143" ry="1.5143" stroke-linejoin="bevel"/>
+ <rect width="12.997" height="13" x="1.5014" y="1.5016" fill="none" stroke="#fff" stroke-miterlimit="10" ry=".50810" stroke-linejoin="bevel" rx=".50812"/>
+ <rect width="14" height="14" x="1.0017" y="1.0016" fill="url(#b)" fill-rule="evenodd" rx="1.9062" ry="1.9062"/>
+ <path fill="#fff" d="m7.029 4.8559c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875 0.62
5c-0.5601 0.4839-1.1564 1.1824-1.1564 2.5v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000652 0.02085 0.000652 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42536 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1563-1.1016 1.1563-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.34375 6.9687c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.0625v1
.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000651-0.02085-0.000651-0.03125 0h-1.5z" display="block"/>
+ <path fill="url(#d)" d="m7.0808 3.8256c-0.51432 0.047292-1.0152 0.19509-1.5 0.4375-0.0104-0.0006514-0.02085-0.0006514-0.03125 0l-0.1875 0.125c-0.03544 0.013371-0.06778 0.034924-0.09375 0.0625-0.01327 0.019236-0.02382 0.040343-0.03125 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625-0.0026 0.020724-0.0026 0.041776 0 0.0625 0.0074 0.022157 0.01798 0.043264 0.03125 0.0625l0.4375 1.0938c0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.0095 0.011311 0.01994 0.021782 0.03125 0.03125 0.02876 0.016495 0.06084 0.027188 0.09375 0.03125 0.02072 0.00261 0.04178 0.00261 0.0625 0 0.01131-0.00947 0.02178-0.019939 0.03125-0.03125l0.21875-0.0625c0.0104 0.0006514 0.02085 0.0006514 0.03125 0 0.2531-0.10708 0.81054-0.25 1.1875-0.25 0.61612 0 0.93062 0.15784 1.0938 0.3125 0.16314 0.15466 0.1875 0.3218 0.1875 0.46875 0 0.28396-0.1033 0.4873-0.28125 0.6875s-0.43874 0.38297-0.71875
0.625c-0.5601 0.4839-1.1564 1.1824-1.1564 2.5003v0.25c-0.000651 0.0104-0.000651 0.02085 0 0.03125 0.0041 0.03291 0.01475 0.06499 0.03125 0.09375 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.0095 0.01131 0.01994 0.02178 0.03125 0.03125 0.03465 0.03208 0.07855 0.05403 0.125 0.0625 0.0104 0.000651 0.02085 0.000651 0.03125 0h1.4062c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03545-0.01337 0.06778-0.03492 0.09375-0.0625 0.01131-0.0095 0.02178-0.01994 0.03125-0.03125 0.03208-0.03464 0.05403-0.07855 0.0625-0.125 0.000651-0.0104 0.000651-0.02085 0-0.03125v-0.25c0-0.42537 0.10634-0.69896 0.28125-0.9375s0.44641-0.42344 0.71875-0.65625c0.54468-0.46561 1.1563-1.1016 1.1563-2.375 0-0.78379-0.33057-1.4123-0.875-1.8125-0.54443-0.40022-1.2799-0.59375-2.1562-0.59375-0.16808 0-0.35981-0.015764-0.53125 0zm-0.3437 6.9684c-0.04343-0.000679-0.087 0.01021-0.125 0.03125-0.03888 0.02211-0.07164 0.05487-0.09375 0.09375-0.01327 0.01924-0.02385 0.04034-0.03125 0.0625-0.0026 0.02072-0.0026 0.04178 0 0.
0625v1.3438c-0.0026 0.02072-0.0026 0.04178 0 0.0625 0.0074 0.02216 0.01798 0.04326 0.03125 0.0625 0.02211 0.03888 0.05487 0.07164 0.09375 0.09375 0.038 0.02104 0.08157 0.03193 0.125 0.03125h1.5c0.02072 0.0026 0.04178 0.0026 0.0625 0 0.03291-0.0041 0.06499-0.01475 0.09375-0.03125 0.02432-0.01691 0.04559-0.03818 0.0625-0.0625 0.01327-0.01924 0.02382-0.04034 0.03125-0.0625 0.0026-0.02072 0.0026-0.04178 0-0.0625 0.000651-0.0104 0.000651-0.02085 0-0.03125v-1.3438c0.000651-0.0104 0.000651-0.02085 0-0.03125-0.0041-0.03291-0.01475-0.06499-0.03125-0.09375-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.0095-0.01131-0.01994-0.02178-0.03125-0.03125-0.02876-0.01649-0.06084-0.02719-0.09375-0.03125-0.0104-0.000652-0.02085-0.000652-0.03125 0h-1.5z" display="block"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkUndocksvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Undock.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Undock.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Undock.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 14">
- <path d="m1.9062 1.4375c-0.491 0.0397-0.90833 0.4208-0.9062 0.8437v6.875c-0.0015 0.0268-0.0015 0.0358 0 0.0626v0.7812h0.8438 0.1562 2.2812v-4.7188c-0.0045-0.9042 0.7349-1.4956 1.5626-1.5624h0.03125 0.03125c0.039713-0.0016 0.053172-0.00107 0.09375 0 0.00812 0.0002133 0.023307-0.0003199 0.03125 0h4.9688v-1.4375c0-0.4485-0.477-0.8438-1-0.8438h-8c-0.03119-0.00126-0.06256-0.00126-0.09375 0zm4 3c-0.491 0.0397-0.9083 0.4208-0.9062 0.8437v6.875c-0.0015 0.027-0.0015 0.036 0 0.063v0.781h0.8438 0.1562 8 0.094 0.906v-0.688c0.0059-0.05338 0.0059-0.10287 0-0.15625v-6.875c0-0.4482-0.477-0.8435-1-0.8435h-8c-0.031193-0.00126-0.062557-0.00126-0.09375 0zm0.53125 2.4375h7.125v4.6875h-7.125v-4.6875z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 14">
+ <path d="m1.9062 1.4375c-0.491 0.0397-0.90833 0.4208-0.9062 0.8437v6.875c-0.0015 0.0268-0.0015 0.0358 0 0.0626v0.7812h0.8438 0.1562 2.2812v-4.7188c-0.0045-0.9042 0.7349-1.4956 1.5626-1.5624h0.03125 0.03125c0.039713-0.0016 0.053172-0.00107 0.09375 0 0.00812 0.0002133 0.023307-0.0003199 0.03125 0h4.9688v-1.4375c0-0.4485-0.477-0.8438-1-0.8438h-8c-0.03119-0.00126-0.06256-0.00126-0.09375 0zm4 3c-0.491 0.0397-0.9083 0.4208-0.9062 0.8437v6.875c-0.0015 0.027-0.0015 0.036 0 0.063v0.781h0.8438 0.1562 8 0.094 0.906v-0.688c0.0059-0.05338 0.0059-0.10287 0-0.15625v-6.875c0-0.4482-0.477-0.8435-1-0.8435h-8c-0.031193-0.00126-0.062557-0.00126-0.09375 0zm0.53125 2.4375h7.125v4.6875h-7.125v-4.6875z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkUpDownArrowssvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UpDownArrows.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UpDownArrows.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UpDownArrows.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 5 12">
- <path d="m4.75 4.4276c-0.017-0.0714-0.0556-0.1375-0.1094-0.1875l-1.875-1.875-0.26562-0.25-0.26562 0.25-1.875 1.875c-0.06894 0.07-0.10908 0.1675-0.1094 0.2657v0.015625 0.03125 0.32812h0.28125 0.046875c0.11834 0.017935 0.24422-0.024025 0.32812-0.10938l1.5938-1.5938 1.6094 1.5938c0.069545 0.069441 0.16735 0.10971 0.26562 0.10938h0.078125 0.29688v-0.29688-0.046875-0.03125-0.046875z" class="filled"/>
- <path d="m4.75 7.5724c-0.017 0.0714-0.0556 0.1375-0.1094 0.1875l-1.875 1.875-0.26562 0.25-0.26562-0.25-1.875-1.875c-0.06894-0.07-0.10908-0.1675-0.1094-0.2657v-0.015625-0.03125-0.32812h0.28125 0.04687c0.11834-0.0179 0.24422 0.0241 0.32812 0.1094l1.5938 1.5938 1.6094-1.5938c0.0695-0.0694 0.1673-0.1097 0.2656-0.1094h0.07813 0.29688v0.29688 0.046875 0.03125 0.046875z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 5 12">
+ <path d="m4.75 4.4276c-0.017-0.0714-0.0556-0.1375-0.1094-0.1875l-1.875-1.875-0.26562-0.25-0.26562 0.25-1.875 1.875c-0.06894 0.07-0.10908 0.1675-0.1094 0.2657v0.015625 0.03125 0.32812h0.28125 0.046875c0.11834 0.017935 0.24422-0.024025 0.32812-0.10938l1.5938-1.5938 1.6094 1.5938c0.069545 0.069441 0.16735 0.10971 0.26562 0.10938h0.078125 0.29688v-0.29688-0.046875-0.03125-0.046875z"/>
+ <path d="m4.75 7.5724c-0.017 0.0714-0.0556 0.1375-0.1094 0.1875l-1.875 1.875-0.26562 0.25-0.26562-0.25-1.875-1.875c-0.06894-0.07-0.10908-0.1675-0.1094-0.2657v-0.015625-0.03125-0.32812h0.28125 0.04687c0.11834-0.0179 0.24422 0.0241 0.32812 0.1094l1.5938 1.5938 1.6094-1.5938c0.0695-0.0694 0.1673-0.1097 0.2656-0.1094h0.07813 0.29688v0.29688 0.046875 0.03125 0.046875z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputPromptsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPrompt.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPrompt.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPrompt.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="none" stroke="#729fcf" stroke-width="1.875" d="m3.4375 8.125 3.125-3.125-3.125-3.125" stroke-linejoin="round" stroke-linecap="round" class="stroked"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="none" stroke="#729fcf" stroke-width="1.875" d="m3.4375 8.125 3.125-3.125-3.125-3.125" stroke-linejoin="round" stroke-linecap="round"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputPromptPrevioussvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPromptPrevious.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPromptPrevious.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputPromptPrevious.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="none" stroke="#bebebe" stroke-width="1.875" d="m3.4375 8.125 3.125-3.125-3.125-3.125" stroke-linejoin="round" stroke-linecap="round" class="stroked"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="none" stroke="#bebebe" stroke-width="1.875" d="m3.4375 8.125 3.125-3.125-3.125-3.125" stroke-linejoin="round" stroke-linecap="round"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkUserInputResultsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputResult.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputResult.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/UserInputResult.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="none" stroke="#d3d7cf" stroke-width="1.875" d="m5.0625 8.125-3.125-3.125 3.125-3.125" stroke-linejoin="round" stroke-linecap="round" class="stroked"/>
- <path fill="#d3d7cf" d="m8.0366 5a1 1 0 1 1 -2 0 1 1 0 1 1 2 0z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="none" stroke="#d3d7cf" stroke-width="1.875" d="m5.0625 8.125-3.125-3.125 3.125-3.125" stroke-linejoin="round" stroke-linecap="round"/>
+ <path fill="#d3d7cf" d="m8.0366 5a1 1 0 1 1 -2 0 1 1 0 1 1 2 0z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStyleNonesvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStyleNone.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStyleNone.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStyleNone.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m12 4h-1.333l-6.667 6.667v1.333h1.3333l6.6667-6.6667z" class="filled"/>
- <path d="m4 4h1.3333l6.6667 6.667v1.333h-1.333l-6.667-6.6667z" class="filled"/>
- <path d="m2 1c-0.5535 0-1 0.4465-1 1v12c0 0.55349 0.44651 1 1 1h12c0.55349 0 1-0.44651 1-1v-12c0-0.5535-0.447-1-1-1h-12zm1 1h10c0.55349 0 1 0.44651 1 1v10c0 0.55349-0.44651 1-1 1h-10c-0.5535 0-1-0.447-1-1v-10c0-0.5535 0.4465-1 1-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m12 4h-1.333l-6.667 6.667v1.333h1.3333l6.6667-6.6667z"/>
+ <path d="m4 4h1.3333l6.6667 6.667v1.333h-1.333l-6.667-6.6667z"/>
+ <path d="m2 1c-0.5535 0-1 0.4465-1 1v12c0 0.55349 0.44651 1 1 1h12c0.55349 0 1-0.44651 1-1v-12c0-0.5535-0.447-1-1-1h-12zm1 1h10c0.55349 0 1 0.44651 1 1v10c0 0.55349-0.44651 1-1 1h-10c-0.5535 0-1-0.447-1-1v-10c0-0.5535 0.4465-1 1-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStylePropertyLinkedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyLinked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyLinked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyLinked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,7 +1,7 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="2" height="6" x="-9" y="-6" transform="matrix(0,-1,-1,0,0,0)" rx="1" ry="0" class="filled"/>
- <rect width="2" height="6" x="-9" y="-16" transform="matrix(0,-1,-1,0,0,0)" rx=".9375" ry="0" class="filled"/>
- <path d="m4 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2h-8zm1 2h6c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="2" height="6" x="-9" y="-6" transform="matrix(0,-1,-1,0,0,0)" rx="1" ry="0"/>
+ <rect width="2" height="6" x="-9" y="-16" transform="matrix(0,-1,-1,0,0,0)" rx=".9375" ry="0"/>
+ <path d="m4 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2h-8zm1 2h6c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-6c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkVisualStylePropertyUnlinkedsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyUnlinked.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyUnlinked.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/VisualStylePropertyUnlinked.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <rect width="2" height="5" x="-9" y="-5" transform="matrix(0,-1,-1,0,0,0)" rx="1" ry="0" class="filled"/>
- <rect width="2" height="5" x="-9" y="-16" transform="matrix(0,-1,-1,0,0,0)" rx=".9375" ry="0" class="filled"/>
- <path d="m4 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h3v-2h-2c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1h2v-2h-3z" class="filled"/>
- <path d="m9 3v2h2c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-2v2h3c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2h-3z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <rect width="2" height="5" x="-9" y="-5" transform="matrix(0,-1,-1,0,0,0)" rx="1" ry="0"/>
+ <rect width="2" height="5" x="-9" y="-16" transform="matrix(0,-1,-1,0,0,0)" rx=".9375" ry="0"/>
+ <path d="m4 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h3v-2h-2c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1h2v-2h-3z"/>
+ <path d="m9 3v2h2c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-2v2h3c1.108 0 2-0.892 2-2v-6c0-1.108-0.892-2-2-2h-3z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkWarningsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Warning.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Warning.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Warning.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 10 10">
- <path fill="#fcaf3e" d="m4.9599 0.36192c-0.3271-0.0178-0.6462 0.17616-0.8947 0.60292l-3.8898 7.2157c-0.33202 0.59959 0.030011 1.4587 0.68072 1.4587h8.1881c0.611 0 1.1844-0.72158 0.75852-1.4587l-3.9287-7.1768c-0.2482-0.40212-0.5871-0.62397-0.9141-0.64178zm0.0389 2.4506c0.3388-0.0107 0.6525 0.303 0.6418 0.6418v2.4506c0.00436 0.32881-0.29353 0.62238-0.62238 0.62238-0.32884 0-0.62702-0.29357-0.62238-0.62238v-2.4506c-0.00498-0.2904 0.22038-0.56794 0.50568-0.62238 0.031803-0.00902 0.064385-0.015497 0.097246-0.019418zm0.019449 4.3372c0.34373 0 0.62238 0.27865 0.62238 0.62238s-0.27865 0.62238-0.62238 0.62238-0.62238-0.27865-0.62238-0.62238 0.27865-0.62238 0.62238-0.62238z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 10 10">
+ <path fill="#fcaf3e" d="m4.9599 0.36192c-0.3271-0.0178-0.6462 0.17616-0.8947 0.60292l-3.8898 7.2157c-0.33202 0.59959 0.030011 1.4587 0.68072 1.4587h8.1881c0.611 0 1.1844-0.72158 0.75852-1.4587l-3.9287-7.1768c-0.2482-0.40212-0.5871-0.62397-0.9141-0.64178zm0.0389 2.4506c0.3388-0.0107 0.6525 0.303 0.6418 0.6418v2.4506c0.00436 0.32881-0.29353 0.62238-0.62238 0.62238-0.32884 0-0.62702-0.29357-0.62238-0.62238v-2.4506c-0.00498-0.2904 0.22038-0.56794 0.50568-0.62238 0.031803-0.00902 0.064385-0.015497 0.097246-0.019418zm0.019449 4.3372c0.34373 0 0.62238 0.27865 0.62238 0.62238s-0.27865 0.62238-0.62238 0.62238-0.62238-0.27865-0.62238-0.62238 0.27865-0.62238 0.62238-0.62238z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceImagesgtkWeightsvg"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Weight.svg (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Weight.svg        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Images/gtk/Weight.svg        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> <?xml version="1.0" encoding="UTF-8"?>
</span><span class="cx"> <!-- Licensed under the Creative Commons Attribution-Share Alike 3.0 United States License (http://creativecommons.org/licenses/by-sa/3.0/) -->
</span><del>-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16">
- <path d="m4.4375 2c-0.5204 0-0.9375 0.4171-0.9375 0.9375v0.125c0 0.5204 0.4171 0.9375 0.9375 0.9375h0.5625v1h-0.6562c-0.4742 0-0.8438 0.3696-0.8438 0.8438v8.1562h9v-8.1562c0-0.4742-0.37-0.8438-0.844-0.8438h-0.656v-1h0.562c0.521 0 0.938-0.4171 0.938-0.9375v-0.125c0-0.5204-0.417-0.9375-0.938-0.9375h-7.125zm0.90625 5.5625c0.02072-0.00261 0.04178-0.00261 0.0625 0h0.5937c0.0329 0.0041 0.065 0.0147 0.0938 0.0313 0.0221 0.0074 0.0432 0.0179 0.0624 0.0312 0.0564 0.045 0.0916 0.1154 0.0938 0.1875v0.96875l0.90625-1.125c0.038-0.0492 0.095-0.0833 0.1563-0.0937 0.0104-0.0006514 0.02085-0.0006514 0.03125 0h0.6875c0.0329 0.0041 0.0649 0.0148 0.0937 0.0313 0.0222 0.0074 0.0433 0.0179 0.0625 0.0312 0.04921 0.03799 0.08339 0.094948 0.09375 0.15625 0.0059 0.030879 0.0059 0.062871 0 0.09375-0.0133 0.0354-0.0349 0.0678-0.0624 0.0938l-1.1876 1.4687 1.2813 1.5625c0.01327 0.01924 0.02385 0.04034 0.03125 0.0625 0.02104 0.038 0.031929 0.08157 0.03125 0.125-0.0041 0.032-0.0148 0.064-0.0312 0.
093-0.0222 0.039-0.0549 0.072-0.0938 0.094-0.01924 0.01327-0.04034 0.02385-0.0625 0.03125-0.02072 0.0026-0.04178 0.0026-0.0625 0h-0.71875c-0.0329-0.004-0.0649-0.014-0.0937-0.031-0.0222-0.007-0.0433-0.018-0.0625-0.031-0.0113-0.01-0.0218-0.02-0.0312-0.032l-0.9688-1.218v1.0625c-0.0022 0.072-0.0374 0.143-0.0938 0.188-0.0192 0.013-0.0403 0.024-0.0624 0.031-0.0288 0.017-0.0609 0.027-0.0938 0.031h-0.59375c-0.02072 0.0026-0.04178 0.0026-0.0625 0-0.09079-0.02092-0.16658-0.09671-0.1875-0.1875-0.0026-0.02072-0.0026-0.04178 0-0.0625v-3.3438c0.005-0.0942 0.0686-0.1831 0.1563-0.2184 0.0095-0.0114 0.0199-0.0218 0.0313-0.0313zm4.0937 0.9687c0.2374 0 0.39451 0.086642 0.5625 0.15625 0.0095-0.011311 0.01994-0.02178 0.03125-0.03125 0.0095-0.011311 0.01994-0.02178 0.03125-0.03125 0.02876-0.016496 0.06084-0.02719 0.09375-0.03125 0.0104-0.0006514 0.02085-0.0006514 0.03125 0h0.40625c0.04343-0.000679 0.087 0.010212 0.125 0.03125 0.01131 0.00947 0.02175 0.019939 0.03125 0.03125 0.04343 0.030323 0.076
8 0.074815 0.09375 0.125 0.0026 0.020724 0.0026 0.041776 0 0.0625v2.375c0 0.3107-0.07692 0.6703-0.3125 0.96875s-0.62478 0.5-1.1875 0.5c-0.24977 0-0.57703-0.06006-0.90625-0.1875l-0.094-0.031c-0.0114-0.01-0.0218-0.02-0.0313-0.031-0.0607-0.032-0.1072-0.09-0.125-0.157-0.00068-0.04343 0.01021-0.087 0.03125-0.125l0.1562-0.437c0.0074-0.022 0.018-0.044 0.0312-0.063 0.0095-0.011 0.02-0.022 0.0313-0.031 0.0506-0.045 0.12-0.068 0.1875-0.063 0.02072-0.0026 0.04178-0.0026 0.0625 0l0.09375 0.0625c0.13955 0.04652 0.33541 0.09375 0.5 0.09375 0.27536 0 0.35369-0.05106 0.40625-0.125 0.01963-0.02762 0.01759-0.1358 0.03125-0.1875-0.068835 0.01053-0.11241 0.0625-0.1875 0.0625-0.42852 0-0.80814-0.14278-1.0625-0.40625-0.2543-0.263-0.3749-0.641-0.3749-1.062 0-0.5275 0.1921-0.9249 0.4687-1.1562 0.2766-0.2314 0.6012-0.3126 0.875-0.3126zm0.1563 0.9688c-0.1549 0-0.2537 0.0358-0.3126 0.0938-0.0588 0.0579-0.0937 0.1768-0.0937 0.4372 0 0.22455 0.05965 0.31499 0.125 0.375 0.0653 0.06 0.1607 0.094 0.3125 0.
094 0.06061 0 0.10828-0.01424 0.15625-0.03125v-0.9375c-0.06-0.0116-0.1334-0.0315-0.1874-0.0315z" class="filled"/>
</del><ins>+<svg xmlns="http://www.w3.org/2000/svg" id="root" version="1.1" viewBox="0 0 16 16">
+ <path d="m4.4375 2c-0.5204 0-0.9375 0.4171-0.9375 0.9375v0.125c0 0.5204 0.4171 0.9375 0.9375 0.9375h0.5625v1h-0.6562c-0.4742 0-0.8438 0.3696-0.8438 0.8438v8.1562h9v-8.1562c0-0.4742-0.37-0.8438-0.844-0.8438h-0.656v-1h0.562c0.521 0 0.938-0.4171 0.938-0.9375v-0.125c0-0.5204-0.417-0.9375-0.938-0.9375h-7.125zm0.90625 5.5625c0.02072-0.00261 0.04178-0.00261 0.0625 0h0.5937c0.0329 0.0041 0.065 0.0147 0.0938 0.0313 0.0221 0.0074 0.0432 0.0179 0.0624 0.0312 0.0564 0.045 0.0916 0.1154 0.0938 0.1875v0.96875l0.90625-1.125c0.038-0.0492 0.095-0.0833 0.1563-0.0937 0.0104-0.0006514 0.02085-0.0006514 0.03125 0h0.6875c0.0329 0.0041 0.0649 0.0148 0.0937 0.0313 0.0222 0.0074 0.0433 0.0179 0.0625 0.0312 0.04921 0.03799 0.08339 0.094948 0.09375 0.15625 0.0059 0.030879 0.0059 0.062871 0 0.09375-0.0133 0.0354-0.0349 0.0678-0.0624 0.0938l-1.1876 1.4687 1.2813 1.5625c0.01327 0.01924 0.02385 0.04034 0.03125 0.0625 0.02104 0.038 0.031929 0.08157 0.03125 0.125-0.0041 0.032-0.0148 0.064-0.0312 0.
093-0.0222 0.039-0.0549 0.072-0.0938 0.094-0.01924 0.01327-0.04034 0.02385-0.0625 0.03125-0.02072 0.0026-0.04178 0.0026-0.0625 0h-0.71875c-0.0329-0.004-0.0649-0.014-0.0937-0.031-0.0222-0.007-0.0433-0.018-0.0625-0.031-0.0113-0.01-0.0218-0.02-0.0312-0.032l-0.9688-1.218v1.0625c-0.0022 0.072-0.0374 0.143-0.0938 0.188-0.0192 0.013-0.0403 0.024-0.0624 0.031-0.0288 0.017-0.0609 0.027-0.0938 0.031h-0.59375c-0.02072 0.0026-0.04178 0.0026-0.0625 0-0.09079-0.02092-0.16658-0.09671-0.1875-0.1875-0.0026-0.02072-0.0026-0.04178 0-0.0625v-3.3438c0.005-0.0942 0.0686-0.1831 0.1563-0.2184 0.0095-0.0114 0.0199-0.0218 0.0313-0.0313zm4.0937 0.9687c0.2374 0 0.39451 0.086642 0.5625 0.15625 0.0095-0.011311 0.01994-0.02178 0.03125-0.03125 0.0095-0.011311 0.01994-0.02178 0.03125-0.03125 0.02876-0.016496 0.06084-0.02719 0.09375-0.03125 0.0104-0.0006514 0.02085-0.0006514 0.03125 0h0.40625c0.04343-0.000679 0.087 0.010212 0.125 0.03125 0.01131 0.00947 0.02175 0.019939 0.03125 0.03125 0.04343 0.030323 0.076
8 0.074815 0.09375 0.125 0.0026 0.020724 0.0026 0.041776 0 0.0625v2.375c0 0.3107-0.07692 0.6703-0.3125 0.96875s-0.62478 0.5-1.1875 0.5c-0.24977 0-0.57703-0.06006-0.90625-0.1875l-0.094-0.031c-0.0114-0.01-0.0218-0.02-0.0313-0.031-0.0607-0.032-0.1072-0.09-0.125-0.157-0.00068-0.04343 0.01021-0.087 0.03125-0.125l0.1562-0.437c0.0074-0.022 0.018-0.044 0.0312-0.063 0.0095-0.011 0.02-0.022 0.0313-0.031 0.0506-0.045 0.12-0.068 0.1875-0.063 0.02072-0.0026 0.04178-0.0026 0.0625 0l0.09375 0.0625c0.13955 0.04652 0.33541 0.09375 0.5 0.09375 0.27536 0 0.35369-0.05106 0.40625-0.125 0.01963-0.02762 0.01759-0.1358 0.03125-0.1875-0.068835 0.01053-0.11241 0.0625-0.1875 0.0625-0.42852 0-0.80814-0.14278-1.0625-0.40625-0.2543-0.263-0.3749-0.641-0.3749-1.062 0-0.5275 0.1921-0.9249 0.4687-1.1562 0.2766-0.2314 0.6012-0.3126 0.875-0.3126zm0.1563 0.9688c-0.1549 0-0.2537 0.0358-0.3126 0.0938-0.0588 0.0579-0.0937 0.1768-0.0937 0.4372 0 0.22455 0.05965 0.31499 0.125 0.375 0.0653 0.06 0.1607 0.094 0.3125 0.
094 0.06061 0 0.10828-0.01424 0.15625-0.03125v-0.9375c-0.06-0.0116-0.1334-0.0315-0.1874-0.0315z"/>
</ins><span class="cx"> </svg>
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsActivateButtonNavigationItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ActivateButtonNavigationItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ActivateButtonNavigationItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ActivateButtonNavigationItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -53,44 +53,19 @@
</span><span class="cx">
</span><span class="cx"> set activated(flag)
</span><span class="cx"> {
</span><ins>+ this.element.classList.toggle(WebInspector.ActivateButtonNavigationItem.ActivatedStyleClassName, flag);
+
</ins><span class="cx"> if (flag) {
</span><span class="cx"> this.toolTip = this._activatedToolTip;
</span><del>- this.element.classList.add(WebInspector.ActivateButtonNavigationItem.ActivatedStyleClassName);
</del><span class="cx"> if (this._role === "tab")
</span><span class="cx"> this.element.setAttribute("aria-selected", "true");
</span><span class="cx"> } else {
</span><span class="cx"> this.toolTip = this._defaultToolTip;
</span><del>- this.element.classList.remove(WebInspector.ActivateButtonNavigationItem.ActivatedStyleClassName);
</del><span class="cx"> if (this._role === "tab")
</span><span class="cx"> this.element.removeAttribute("aria-selected");
</span><span class="cx"> }
</span><span class="cx"> }
</span><span class="cx">
</span><del>- generateStyleText(parentSelector)
- {
- var classNames = this._classNames.join(".");
-
- if (this._suppressEmboss)
- var styleText = parentSelector + " ." + classNames + " > .glyph { width: " + this._imageWidth + "px; height: " + this._imageHeight + "px; }\n";
- else {
- var activatedClassName = "." + WebInspector.ActivateButtonNavigationItem.ActivatedStyleClassName;
-
- // Default state.
- var styleText = parentSelector + " ." + classNames + " > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Normal) + "); background-size: " + this._imageWidth + "px " + this._imageHeight + "px; }\n";
-
- // Pressed state.
- styleText += parentSelector + " ." + classNames + ":not(.disabled):active > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Active) + "); }\n";
-
- // Activated state.
- styleText += parentSelector + " ." + classNames + activatedClassName + ":not(.disabled) > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Focus) + "); }\n";
-
- // Activated and pressed state.
- styleText += parentSelector + " ." + classNames + activatedClassName + ":not(.disabled):active > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.ActiveFocus) + "); }\n";
- }
-
- return styleText;
- }
-
</del><span class="cx"> // Protected
</span><span class="cx">
</span><span class="cx"> get additionalClassNames()
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsButtonNavigationItemcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -25,6 +25,7 @@
</span><span class="cx">
</span><span class="cx"> .navigation-bar .item.button {
</span><span class="cx"> width: 26px;
</span><ins>+ justify-content: center;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .navigation-bar .item.button.text-only {
</span><span class="lines">@@ -38,44 +39,32 @@
</span><span class="cx"> border-radius: 3px;
</span><span class="cx"> text-align: center;
</span><span class="cx"> height: auto;
</span><del>-
- justify-content: center;
</del><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .navigation-bar .item.button > .glyph {
</span><del>- width: 100%;
- height: 100%;
-
- background-repeat: no-repeat;
- background-position: center center;
</del><ins>+ color: hsl(0, 0%, 30%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-body.window-inactive .navigation-bar .item.button:not(.suppress-emboss) > .glyph {
- opacity: 0.65;
</del><ins>+.navigation-bar .item.button:not(.disabled):active > .glyph {
+ color: hsl(0, 0%, 15%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.navigation-bar .item.button.disabled > .glyph {
- opacity: 0.55 !important;
</del><ins>+.navigation-bar .item.button:not(.disabled):matches(:focus, .activate.activated, .radio.selected) > .glyph {
+ color: hsl(212, 92%, 54%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-body.window-inactive .navigation-bar .item.button.disabled:not(.suppress-emboss) > .glyph {
- opacity: 0.35 !important;
</del><ins>+.navigation-bar .item.button:not(.disabled):active:matches(:focus, .activate.activated, .radio.selected) > .glyph {
+ color: hsl(218, 85%, 52%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.navigation-bar .item.button.suppress-emboss {
- background-image: none !important;
- border-color: transparent !important;
- box-shadow: none !important;
</del><ins>+body.window-inactive .navigation-bar .item.button > .glyph {
+ opacity: 0.65;
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.navigation-bar .item.button.suppress-emboss > .glyph {
- background-color: hsl(0, 0%, 37%);
</del><ins>+.navigation-bar .item.button.disabled > .glyph {
+ opacity: 0.55 !important;
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.navigation-bar .item.button.suppress-emboss:active > .glyph {
- opacity: 1;
</del><ins>+body.window-inactive .navigation-bar .item.button.disabled > .glyph {
+ opacity: 0.35 !important;
</ins><span class="cx"> }
</span><del>-
-.navigation-bar .item.button.suppress-emboss.disabled > .glyph {
- opacity: 0.7 !important;
-}
</del></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsButtonNavigationItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ButtonNavigationItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -29,9 +29,6 @@
</span><span class="cx"> {
</span><span class="cx"> super(identifier);
</span><span class="cx">
</span><del>- this._embossedImageStates = WebInspector.ButtonNavigationItem.States;
- this._imageCacheable = true;
-
</del><span class="cx"> console.assert(identifier);
</span><span class="cx"> console.assert(toolTipOrLabel);
</span><span class="cx">
</span><span class="lines">@@ -46,11 +43,7 @@
</span><span class="cx">
</span><span class="cx"> this._imageWidth = imageWidth || 16;
</span><span class="cx"> this._imageHeight = imageHeight || 16;
</span><del>- this._suppressEmboss = suppressEmboss || false;
</del><span class="cx">
</span><del>- if (suppressEmboss)
- this._element.classList.add(WebInspector.ButtonNavigationItem.SuppressEmbossStyleClassName);
-
</del><span class="cx"> if (image)
</span><span class="cx"> this.image = image;
</span><span class="cx"> else
</span><span class="lines">@@ -103,11 +96,10 @@
</span><span class="cx">
</span><span class="cx"> this._image = newImage;
</span><span class="cx">
</span><del>- this._glyphElement = document.createElement("div");
- this._glyphElement.className = "glyph";
</del><ins>+ this._glyphElement = useSVGSymbol(this._image, "glyph");
+ this._glyphElement.setAttribute("width", this._imageWidth + "px");
+ this._glyphElement.setAttribute("height", this._imageHeight + "px");
</ins><span class="cx"> this._element.appendChild(this._glyphElement);
</span><del>-
- this._updateImage();
</del><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> get enabled()
</span><span class="lines">@@ -123,39 +115,6 @@
</span><span class="cx"> this._element.classList.add(WebInspector.ButtonNavigationItem.DisabledStyleClassName);
</span><span class="cx"> }
</span><span class="cx">
</span><del>- get suppressBezel()
- {
- return this._element.classList.contains(WebInspector.ButtonNavigationItem.SuppressBezelStyleClassName);
- }
-
- set suppressBezel(flag)
- {
- if (flag)
- this._element.classList.add(WebInspector.ButtonNavigationItem.SuppressBezelStyleClassName);
- else
- this._element.classList.remove(WebInspector.ButtonNavigationItem.SuppressBezelStyleClassName);
- }
-
- generateStyleText(parentSelector)
- {
- var classNames = this._classNames.join(".");
-
- if (this._suppressEmboss)
- var styleText = parentSelector + " ." + classNames + " > .glyph { width: " + this._imageWidth + "px; height: " + this._imageHeight + "px; }\n";
- else {
- // Default state.
- var styleText = parentSelector + " ." + classNames + " > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier() + "); background-size: " + this._imageWidth + "px " + this._imageHeight + "px; }\n";
-
- // Pressed state.
- styleText += parentSelector + " ." + classNames + ":not(.disabled):active > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Active) + "); }\n";
-
- // Focused state.
- styleText += parentSelector + " ." + classNames + ":not(.disabled):focus > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Focus) + "); }\n";
- }
-
- return styleText;
- }
-
</del><span class="cx"> // Protected
</span><span class="cx">
</span><span class="cx"> get additionalClassNames()
</span><span class="lines">@@ -171,41 +130,11 @@
</span><span class="cx"> return;
</span><span class="cx"> this.dispatchEventToListeners(WebInspector.ButtonNavigationItem.Event.Clicked);
</span><span class="cx"> }
</span><del>-
- _canvasIdentifier(state)
- {
- console.assert(!this._suppressEmboss);
- return "navigation-item-" + this._identifier + "-" + (state || WebInspector.ButtonNavigationItem.States.Normal);
- }
-
- _updateImage()
- {
- if (this._suppressEmboss)
- this._glyphElement.style.webkitMask = "url(" + this._image + ")";
- else
- this._generateImages();
- }
-
- _generateImages()
- {
- console.assert(!this._suppressEmboss);
- if (this._suppressEmboss)
- return;
- generateEmbossedImages(this.image, this._imageWidth, this._imageHeight, this._embossedImageStates, this._canvasIdentifier.bind(this), !this._imageCacheable);
- }
</del><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> WebInspector.ButtonNavigationItem.DisabledStyleClassName = "disabled";
</span><del>-WebInspector.ButtonNavigationItem.SuppressBezelStyleClassName = "suppress-bezel";
-WebInspector.ButtonNavigationItem.SuppressEmbossStyleClassName = "suppress-emboss";
</del><span class="cx"> WebInspector.ButtonNavigationItem.TextOnlyClassName = "text-only";
</span><span class="cx">
</span><del>-WebInspector.ButtonNavigationItem.States = {};
-WebInspector.ButtonNavigationItem.States.Normal = "normal";
-WebInspector.ButtonNavigationItem.States.Active = "active";
-WebInspector.ButtonNavigationItem.States.Focus = "focus";
-WebInspector.ButtonNavigationItem.States.ActiveFocus = "active-focus";
-
</del><span class="cx"> WebInspector.ButtonNavigationItem.Event = {
</span><span class="cx"> Clicked: "button-navigation-item-clicked"
</span><span class="cx"> };
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsButtonToolbarItemcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ButtonToolbarItem.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ButtonToolbarItem.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ButtonToolbarItem.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -43,10 +43,11 @@
</span><span class="cx"> width: 32px;
</span><span class="cx"> height: 32px;
</span><span class="cx">
</span><del>- background-size: 100% 100% !important;
</del><ins>+ color: hsl(0, 0%, 45%);
+}
</ins><span class="cx">
</span><del>- background-repeat: no-repeat;
- background-position: center center;
</del><ins>+.toolbar .item.button:not(.disabled):active > .glyph {
+ color: hsl(0, 0%, 30%);
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .toolbar.small-size .item.button > .glyph {
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsControlToolbarItemcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ControlToolbarItem.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ControlToolbarItem.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ControlToolbarItem.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -29,7 +29,7 @@
</span><span class="cx">
</span><span class="cx"> padding: 3px 2px;
</span><span class="cx">
</span><del>- opacity: 0.7;
</del><ins>+ opacity: 0.5;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .toolbar.small-size .item.control {
</span><span class="lines">@@ -41,7 +41,7 @@
</span><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .toolbar .item.control:hover {
</span><del>- opacity: 0.9;
</del><ins>+ opacity: 0.75;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .toolbar .item.control:active {
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsMultipleScopeBarItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/MultipleScopeBarItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/MultipleScopeBarItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/MultipleScopeBarItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -40,9 +40,7 @@
</span><span class="cx"> this._selectElement.addEventListener("change", this._selectElementSelectionChanged.bind(this));
</span><span class="cx"> this._element.appendChild(this._selectElement);
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/UpDownArrows.svg", "arrows", null, function(element) {
- this._element.appendChild(element);
- }.bind(this));
</del><ins>+ this._element.appendChild(useSVGSymbol("Images/UpDownArrows.svg", "arrows"));
</ins><span class="cx">
</span><span class="cx"> this.scopeBarItems = scopeBarItems;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsNavigationBarjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NavigationBar.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/NavigationBar.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NavigationBar.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -43,18 +43,12 @@
</span><span class="cx"> this._element.addEventListener("keydown", this._keyDown.bind(this), false);
</span><span class="cx"> this._element.addEventListener("mousedown", this._mouseDown.bind(this), false);
</span><span class="cx">
</span><del>- document.addEventListener("load", this.updateLayout.bind(this), false);
-
- this._styleElement = document.createElement("style");
-
</del><span class="cx"> this._navigationItems = [];
</span><span class="cx">
</span><span class="cx"> if (navigationItems) {
</span><span class="cx"> for (var i = 0; i < navigationItems.length; ++i)
</span><span class="cx"> this.addNavigationItem(navigationItems[i]);
</span><span class="cx"> }
</span><del>-
- document.head.appendChild(this._styleElement);
</del><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> // Public
</span><span class="lines">@@ -91,7 +85,6 @@
</span><span class="cx"> parentElement.insertBefore(navigationItem.element, nextSiblingElement);
</span><span class="cx">
</span><span class="cx"> this._minimumWidthNeedsRecalculation = true;
</span><del>- this._needsStyleUpdated = true;
</del><span class="cx">
</span><span class="cx"> this.updateLayoutSoon();
</span><span class="cx">
</span><span class="lines">@@ -113,7 +106,6 @@
</span><span class="cx"> navigationItem.element.remove();
</span><span class="cx">
</span><span class="cx"> this._minimumWidthNeedsRecalculation = true;
</span><del>- this._needsStyleUpdated = true;
</del><span class="cx">
</span><span class="cx"> this.updateLayoutSoon();
</span><span class="cx">
</span><span class="lines">@@ -131,7 +123,7 @@
</span><span class="cx"> {
</span><span class="cx"> this._updateLayoutIdentifier = undefined;
</span><span class="cx">
</span><del>- if (this._needsLayout || this._needsStyleUpdated)
</del><ins>+ if (this._needsLayout)
</ins><span class="cx"> this.updateLayout();
</span><span class="cx"> }
</span><span class="cx">
</span><span class="lines">@@ -145,9 +137,6 @@
</span><span class="cx"> this._updateLayoutIdentifier = undefined;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- if (this._needsStyleUpdated)
- this._updateStyle();
-
</del><span class="cx"> this._needsLayout = false;
</span><span class="cx">
</span><span class="cx"> if (typeof this.customUpdateLayout === "function") {
</span><span class="lines">@@ -402,24 +391,6 @@
</span><span class="cx"> this._focused = false;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- _updateStyle()
- {
- this._needsStyleUpdated = false;
-
- var parentSelector = "." + (this.constructor.StyleClassName || "navigation-bar");
-
- var styleText = "";
- for (var i = 0; i < this._navigationItems.length; ++i) {
- if (!this._navigationItems[i].generateStyleText)
- continue;
- if (styleText)
- styleText += "\n";
- styleText += this._navigationItems[i].generateStyleText(parentSelector);
- }
-
- this._styleElement.textContent = styleText;
- }
-
</del><span class="cx"> _calculateMinimumWidth()
</span><span class="cx"> {
</span><span class="cx"> var wasCollapsed = this._element.classList.contains(WebInspector.NavigationBar.CollapsedStyleClassName);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsNetworkSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NetworkSidebarPanel.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/NetworkSidebarPanel.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NetworkSidebarPanel.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -156,21 +156,19 @@
</span><span class="cx"> if (treeElement.status || !treeElement.treeOutline)
</span><span class="cx"> return;
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/Close.svg", null, WebInspector.UIString("Close resource view"), function(element) {
- var fragment = document.createDocumentFragment();
</del><ins>+ var fragment = document.createDocumentFragment();
</ins><span class="cx">
</span><del>- var closeButton = new WebInspector.TreeElementStatusButton(element);
- closeButton.element.classList.add("close");
- closeButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementCloseButtonClicked, this);
- fragment.appendChild(closeButton.element);
</del><ins>+ var closeButton = new WebInspector.TreeElementStatusButton(useSVGSymbol("Images/Close.svg", null, WebInspector.UIString("Close resource view")));
+ closeButton.element.classList.add("close");
+ closeButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementCloseButtonClicked, this);
+ fragment.appendChild(closeButton.element);
</ins><span class="cx">
</span><del>- var goToButton = new WebInspector.TreeElementStatusButton(WebInspector.createGoToArrowButton());
- goToButton.__treeElement = treeElement;
- goToButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementGoToArrowWasClicked, this);
- fragment.appendChild(goToButton.element);
</del><ins>+ var goToButton = new WebInspector.TreeElementStatusButton(WebInspector.createGoToArrowButton());
+ goToButton.__treeElement = treeElement;
+ goToButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementGoToArrowWasClicked, this);
+ fragment.appendChild(goToButton.element);
</ins><span class="cx">
</span><del>- treeElement.status = fragment;
- }.bind(this));
</del><ins>+ treeElement.status = fragment;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> // Private
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsRadioButtonNavigationItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/RadioButtonNavigationItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/RadioButtonNavigationItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/RadioButtonNavigationItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -55,28 +55,9 @@
</span><span class="cx">
</span><span class="cx"> set active(flag)
</span><span class="cx"> {
</span><del>- if (flag)
- this.element.classList.add(WebInspector.RadioButtonNavigationItem.ActiveStyleClassName);
- else
- this.element.classList.remove(WebInspector.RadioButtonNavigationItem.ActiveStyleClassName);
</del><ins>+ this.element.classList.toggle(WebInspector.RadioButtonNavigationItem.ActiveStyleClassName, flag);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>- generateStyleText(parentSelector)
- {
- var classNames = this._classNames.join(".");
-
- // Default state.
- var styleText = parentSelector + " ." + classNames + " > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier() + "); background-size: " + this._imageWidth + "px " + this._imageHeight + "px; }\n";
-
- // Selected state.
- styleText += parentSelector + " ." + classNames + ".selected:not(.disabled) > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.Focus) + "); }\n";
-
- // Selected and pressed state.
- styleText += parentSelector + " ." + classNames + ".selected:not(.disabled):active > .glyph { background-image: -webkit-canvas(" + this._canvasIdentifier(WebInspector.ButtonNavigationItem.States.ActiveFocus) + "); }\n";
-
- return styleText;
- }
-
</del><span class="cx"> updateLayout(expandOnly)
</span><span class="cx"> {
</span><span class="cx"> if (expandOnly)
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeBarcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -71,14 +71,10 @@
</span><span class="cx"> margin-bottom: -1px;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .filled {
- fill: white !important;
</del><ins>+.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows {
+ color: white;
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.scope-bar > li.multiple:matches(.selected, :hover, :active) > .arrows svg .stroked {
- stroke: white !important;
-}
-
</del><span class="cx"> .scope-bar > li:matches(.selected, :active) {
</span><span class="cx"> transition-duration: 75ms;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeBarItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBarItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBarItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBarItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -31,7 +31,8 @@
</span><span class="cx">
</span><span class="cx"> this._element = document.createElement("li");
</span><span class="cx"> this._element.classList.toggle("exclusive", !!exclusive);
</span><del>- this._element.classList.add(className);
</del><ins>+ if (className)
+ this._element.classList.add(className);
</ins><span class="cx"> this._element.textContent = label;
</span><span class="cx"> this._element.addEventListener("click", this._clicked.bind(this));
</span><span class="cx">
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeRadioButtonNavigationItemcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -57,7 +57,6 @@
</span><span class="cx"> display: inline-block;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.scope-radio-button-navigation-item:hover > .arrows > svg .stroked,
-.scope-radio-button-navigation-item.selected > .arrows > svg .stroked {
- stroke: white;
-}
</del><span class="cx">\ No newline at end of file
</span><ins>+.scope-radio-button-navigation-item:hover > .arrows {
+ color: white;
+}
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeRadioButtonNavigationItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeRadioButtonNavigationItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -48,9 +48,7 @@
</span><span class="cx"> this._scopeItemSelect.addEventListener("change", this._handleItemChanged.bind(this));
</span><span class="cx"> this._element.appendChild(this._scopeItemSelect);
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/UpDownArrows.svg", "arrows", null, function(element) {
- this._element.appendChild(element);
- }.bind(this));
</del><ins>+ this._element.appendChild(useSVGSymbol("Images/UpDownArrows.svg", "arrows"));
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> // Public
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTimelineSidebarPanelcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -159,14 +159,10 @@
</span><span class="cx"> color: black;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .filled {
- fill: black !important;
</del><ins>+.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple .arrows {
+ color: black;
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.sidebar > .panel.navigation.timeline > .title-bar.timeline-events > .title-bar-scope-bar > .default-item-selected > .multiple svg .stroked {
- stroke: black !important;
-}
-
</del><span class="cx"> body.window-inactive .sidebar > .panel.navigation.timeline > .title-bar.timeline-events {
</span><span class="cx"> border-top-color: hsl(0, 0%, 85%);
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTimelineSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -451,21 +451,19 @@
</span><span class="cx"> if (!treeElement.treeOutline.__canShowContentViewForTreeElement(treeElement))
</span><span class="cx"> return;
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/Close.svg", null, WebInspector.UIString("Close resource view"), function(element) {
- var fragment = document.createDocumentFragment();
</del><ins>+ var fragment = document.createDocumentFragment();
</ins><span class="cx">
</span><del>- var closeButton = new WebInspector.TreeElementStatusButton(element);
- closeButton.element.classList.add("close");
- closeButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementCloseButtonClicked, this);
- fragment.appendChild(closeButton.element);
</del><ins>+ var closeButton = new WebInspector.TreeElementStatusButton(useSVGSymbol("Images/Close.svg", null, WebInspector.UIString("Close resource view")));
+ closeButton.element.classList.add("close");
+ closeButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementCloseButtonClicked, this);
+ fragment.appendChild(closeButton.element);
</ins><span class="cx">
</span><del>- var goToButton = new WebInspector.TreeElementStatusButton(WebInspector.createGoToArrowButton());
- goToButton.__treeElement = treeElement;
- goToButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementGoToArrowWasClicked, this);
- fragment.appendChild(goToButton.element);
</del><ins>+ var goToButton = new WebInspector.TreeElementStatusButton(WebInspector.createGoToArrowButton());
+ goToButton.__treeElement = treeElement;
+ goToButton.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this._treeElementGoToArrowWasClicked, this);
+ fragment.appendChild(goToButton.element);
</ins><span class="cx">
</span><del>- treeElement.status = fragment;
- }.bind(this));
</del><ins>+ treeElement.status = fragment;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> canShowDifferentContentView()
</span><span class="lines">@@ -735,11 +733,9 @@
</span><span class="cx">
</span><span class="cx"> var timelineTreeElement = new WebInspector.GeneralTreeElement([timeline.iconClassName, WebInspector.TimelineSidebarPanel.LargeIconStyleClass], timeline.displayName, null, timeline);
</span><span class="cx"> var tooltip = WebInspector.UIString("Close %s timeline view").format(timeline.displayName);
</span><del>- wrappedSVGDocument("Images/CloseLarge.svg", WebInspector.TimelineSidebarPanel.CloseButtonStyleClass, tooltip, function(element) {
- var button = new WebInspector.TreeElementStatusButton(element);
- button.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this.showTimelineOverview, this);
- timelineTreeElement.status = button.element;
- }.bind(this));
</del><ins>+ var button = new WebInspector.TreeElementStatusButton(useSVGSymbol("Images/CloseLarge.svg", "close-button", tooltip));
+ button.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this.showTimelineOverview, this);
+ timelineTreeElement.status = button.element;
</ins><span class="cx">
</span><span class="cx"> this._timelinesTreeOutline.appendChild(timelineTreeElement);
</span><span class="cx"> this._timelineTreeElementMap.set(timeline, timelineTreeElement);
</span><span class="lines">@@ -1024,7 +1020,6 @@
</span><span class="cx"> WebInspector.TimelineSidebarPanel.TimelinesTitleBarStyleClass = "timelines";
</span><span class="cx"> WebInspector.TimelineSidebarPanel.TimelineEventsTitleBarStyleClass = "timeline-events";
</span><span class="cx"> WebInspector.TimelineSidebarPanel.TimelinesContentContainerStyleClass = "timelines-content";
</span><del>-WebInspector.TimelineSidebarPanel.CloseButtonStyleClass = "close-button";
</del><span class="cx"> WebInspector.TimelineSidebarPanel.LargeIconStyleClass = "large";
</span><span class="cx"> WebInspector.TimelineSidebarPanel.StopwatchIconStyleClass = "stopwatch-icon";
</span><span class="cx"> WebInspector.TimelineSidebarPanel.NetworkIconStyleClass = "network-icon";
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsToggleButtonNavigationItemjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ToggleButtonNavigationItem.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ToggleButtonNavigationItem.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ToggleButtonNavigationItem.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -29,11 +29,6 @@
</span><span class="cx"> {
</span><span class="cx"> super(identifier, defaultToolTip, defaultImage, imageWidth, imageHeight, suppressEmboss);
</span><span class="cx">
</span><del>- // The image isn't cacheable because it dynamically changes and the same canvas identifier is reused.
- // FIXME: We could try overriding _canvasIdentifier() to return different identifiers. If we did that
- // we would also need to override generateStyleText() to use the different identifiers.
- this._imageCacheable = false;
-
</del><span class="cx"> this._toggled = false;
</span><span class="cx"> this._defaultImage = defaultImage;
</span><span class="cx"> this._alternateImage = alternateImage;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTreeElementStatusButtoncss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TreeElementStatusButton.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TreeElementStatusButton.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TreeElementStatusButton.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -30,22 +30,14 @@
</span><span class="cx"> vertical-align: middle;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.item > .status > .status-button > svg .filled {
- fill: hsl(0, 0%, 50%);
</del><ins>+.item > .status > .status-button {
+ color: hsl(0, 0%, 50%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .filled {
- fill: white !important;
</del><ins>+:matches(:focus, .force-focus) .item.selected > .status > .status-button {
+ color: white;
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.item > .status > .status-button > svg .stroked {
- stroke: hsl(0, 0%, 50%);
-}
-
-:matches(:focus, .force-focus) .item.selected > .status > .status-button > svg .stroked {
- stroke: white !important;
-}
-
</del><span class="cx"> .item.selected > .status > .status-button:active {
</span><span class="cx"> opacity: 0.75;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleCommaSeparatedKeywordEditorjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -44,15 +44,13 @@
</span><span class="cx"> controlContainer.classList.add("visual-style-comma-separated-keyword-controls");
</span><span class="cx"> this.contentElement.appendChild(controlContainer);
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/Plus13.svg", "visual-style-add-comma-separated-keyword", WebInspector.UIString("Click to add a new item."), function(wrapper) {
- wrapper.addEventListener("click", this._addEmptyCommaSeparatedKeyword.bind(this));
- controlContainer.appendChild(wrapper);
- }.bind(this));
</del><ins>+ let addGlyphElement = useSVGSymbol("Images/Plus13.svg", "visual-style-add-comma-separated-keyword");
+ addGlyphElement.addEventListener("click", this._addEmptyCommaSeparatedKeyword.bind(this));
+ controlContainer.appendChild(addGlyphElement);
</ins><span class="cx">
</span><del>- wrappedSVGDocument("Images/Minus.svg", "visual-style-remove-comma-separated-keyword", WebInspector.UIString("Click to remove the selected item."), function(wrapper) {
- wrapper.addEventListener("click", this._removeSelectedCommaSeparatedKeyword.bind(this));
- controlContainer.appendChild(wrapper);
- }.bind(this));
</del><ins>+ let removeGlyphElement = useSVGSymbol("Images/Minus.svg", "visual-style-remove-comma-separated-keyword", WebInspector.UIString("Click to remove the selected item."));
+ removeGlyphElement.addEventListener("click", this._removeSelectedCommaSeparatedKeyword.bind(this));
+ controlContainer.appendChild(removeGlyphElement);
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> // Public
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleDetailsPanelcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleDetailsPanel.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleDetailsPanel.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleDetailsPanel.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx"> right: 5px;
</span><span class="cx"> width: 15px;
</span><span class="cx"> height: 15px;
</span><del>- background-image: -webkit-canvas(navigation-item-clear-log-normal);
</del><ins>+ background-image: url(../Images/NavigationItemTrash.svg);
</ins><span class="cx"> background-size: 15px 15px;
</span><span class="cx"> opacity: 0.7;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleKeywordIconListcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -59,16 +59,9 @@
</span><span class="cx">
</span><span class="cx"> .visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected {
</span><span class="cx"> background-color: hsl(213, 92%, 55%);
</span><ins>+ color: hsl(0, 100%, 100%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .stroked {
- stroke: hsl(0, 100%, 100%);
-}
-
-.visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon.selected svg .filled {
- fill: hsl(0, 100%, 100%);
-}
-
</del><span class="cx"> .visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon:matches(.computed, .selected) + .keyword-icon {
</span><span class="cx"> width: 25px;
</span><span class="cx"> border-left: none;
</span><span class="lines">@@ -84,5 +77,5 @@
</span><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .visual-style-property-container.keyword-icon-list > .visual-style-property-value-container > .keyword-icon-list-container > .keyword-icon:not(.selected) > div {
</span><del>- filter: opacity(0.7);
</del><ins>+ opacity: 0.7;
</ins><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleKeywordIconListjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleKeywordIconList.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -50,9 +50,7 @@
</span><span class="cx"> iconButtonElement.addEventListener("click", this._handleKeywordChanged.bind(this));
</span><span class="cx">
</span><span class="cx"> let imageName = value === "none" ? "VisualStyleNone" : prettyPropertyReferenceName + title.replace(/\s/g, "");
</span><del>- wrappedSVGDocument("Images/" + imageName + ".svg", null, null, function(wrapper) {
- iconButtonElement.appendChild(wrapper);
- }.bind(this));
</del><ins>+ iconButtonElement.appendChild(useSVGSymbol("Images/" + imageName + ".svg"));
</ins><span class="cx">
</span><span class="cx"> return iconButtonElement;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorLinkcss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -96,7 +96,7 @@
</span><span class="cx"> width: 12px;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.visual-style-property-editor-link > .visual-style-property-editor-link-icon {
</del><ins>+.visual-style-property-editor-link > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon) {
</ins><span class="cx"> width: 9px;
</span><span class="cx"> height: 12px;
</span><span class="cx"> }
</span><span class="lines">@@ -107,14 +107,10 @@
</span><span class="cx"> z-index: 1;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .filled {
- fill: hsl(0, 0%, 50%);
</del><ins>+.visual-style-property-editor-link:not(.linked) > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon) {
+ color: hsl(0, 0%, 50%);
</ins><span class="cx"> }
</span><span class="cx">
</span><del>-.visual-style-property-editor-link > .visual-style-property-editor-link-icon > .unlinked-icon svg .stroked {
- stroke: hsl(0, 0%, 50%);
-}
-
</del><span class="cx"> .visual-style-property-editor-link:not(.link-all) > .visual-style-property-editor-link-icon {
</span><span class="cx"> margin-left: 11px;
</span><span class="cx"> }
</span><span class="lines">@@ -133,7 +129,7 @@
</span><span class="cx"> width: 52px;
</span><span class="cx"> }
</span><span class="cx">
</span><del>- .visual-style-property-editor-link > .visual-style-property-editor-link-icon {
</del><ins>+ .visual-style-property-editor-link > .visual-style-property-editor-link-icon > :matches(.linked-icon, .unlinked-icon) {
</ins><span class="cx"> width: 10px;
</span><span class="cx"> }
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStylePropertyEditorLinkjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStylePropertyEditorLink.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -50,16 +50,12 @@
</span><span class="cx"> this._iconElement.addEventListener("mouseout", this._iconMouseout.bind(this));
</span><span class="cx"> this._iconElement.addEventListener("click", this._iconClicked.bind(this));
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/VisualStylePropertyUnlinked.svg", "unlinked-icon", null, function(wrapper) {
- this._iconElement.appendChild(wrapper);
- this._unlinkedIcon = wrapper;
- }.bind(this));
</del><ins>+ this._unlinkedIcon = useSVGSymbol("Images/VisualStylePropertyUnlinked.svg", "unlinked-icon");
+ this._iconElement.appendChild(this._unlinkedIcon);
</ins><span class="cx">
</span><del>- wrappedSVGDocument("Images/VisualStylePropertyLinked.svg", "linked-icon", null, function(wrapper) {
- this._iconElement.appendChild(wrapper);
- this._linkedIcon = wrapper;
- this._linkedIcon.hidden = true;
- }.bind(this));
</del><ins>+ this._linkedIcon = useSVGSymbol("Images/VisualStylePropertyLinked.svg", "linked-icon");
+ this._linkedIcon.hidden = true;
+ this._iconElement.appendChild(this._linkedIcon);
</ins><span class="cx">
</span><span class="cx"> this._element.appendChild(this._iconElement);
</span><span class="cx">
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorSectioncss"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.css (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.css        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.css        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -77,7 +77,7 @@
</span><span class="cx"> width: 23px;
</span><span class="cx"> height: 21px;
</span><span class="cx"> padding: 4px 5px;
</span><del>- filter: opacity(0.7);
</del><ins>+ opacity: 0.7;
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx"> .details-section.visual-style-selector-section:not(.collapsed) > .content {
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsVisualStyleSelectorSectionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.js (191692 => 191693)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.js        2015-10-28 21:17:46 UTC (rev 191692)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/VisualStyleSelectorSection.js        2015-10-28 21:24:17 UTC (rev 191693)
</span><span class="lines">@@ -58,10 +58,9 @@
</span><span class="cx"> this._selectors.onselect = this._selectorChanged.bind(this);
</span><span class="cx"> this._focusNextNewInspectorRule = false;
</span><span class="cx">
</span><del>- wrappedSVGDocument("Images/Plus13.svg", "visual-style-selector-section-add-rule", WebInspector.UIString("Click to add a new rule."), function(wrapper) {
- wrapper.addEventListener("click", this._addNewRule.bind(this));
- controlElement.appendChild(wrapper);
- }.bind(this));
</del><ins>+ let addGlyphElement = useSVGSymbol("Images/Plus13.svg", "visual-style-selector-section-add-rule", WebInspector.UIString("Click to add a new rule."));
+ addGlyphElement.addEventListener("click", this._addNewRule.bind(this));
+ controlElement.appendChild(addGlyphElement);
</ins><span class="cx">
</span><span class="cx"> this._headerElement.addEventListener("mouseover", this._handleMouseOver.bind(this));
</span><span class="cx"> this._headerElement.addEventListener("mouseout", this._handleMouseOut.bind(this));
</span></span></pre>
</div>
</div>
</body>
</html>