<!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>[189241] trunk</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/189241">189241</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2015-09-01 18:55:49 -0700 (Tue, 01 Sep 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Move PrettyPrinting tests into LayoutTests
https://bugs.webkit.org/show_bug.cgi?id=148698

Patch by Joseph Pecoraro &lt;pecoraro@apple.com&gt; on 2015-09-01
Reviewed by Timothy Hatcher.

Source/WebInspectorUI:

* Tools/PrettyPrinting/index.html:
Modify the relative path to the tests which are now in LayoutTests.

* UserInterface/Test.html:
Load CodeMirror and related resources for Formatting.

LayoutTests:

* inspector/codemirror/resources/prettyprinting/css-rule-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/*.
* inspector/codemirror/resources/prettyprinting/css-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/*.
* inspector/codemirror/resources/prettyprinting/javascript-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/*.
Move tests from PrettyPrinting tools into LayoutTests.

* inspector/codemirror/prettyprinting-css-expected.txt: Added.
* inspector/codemirror/prettyprinting-css-rules-expected.txt: Added.
* inspector/codemirror/prettyprinting-css-rules.html: Added.
* inspector/codemirror/prettyprinting-css.html: Added.
* inspector/codemirror/prettyprinting-javascript-expected.txt: Added.
* inspector/codemirror/prettyprinting-javascript.html: Added.
Add tests per CodeMirror mode.

* inspector/codemirror/resources/prettyprinting/utilities.js: Added.
(TestPage.registerInitializer):
Shared code between the pretty printing tests.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIToolsPrettyPrintingindexhtml">trunk/Source/WebInspectorUI/Tools/PrettyPrinting/index.html</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceTesthtml">trunk/Source/WebInspectorUI/UserInterface/Test.html</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li>trunk/LayoutTests/inspector/codemirror/</li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingcssexpectedtxt">trunk/LayoutTests/inspector/codemirror/prettyprinting-css-expected.txt</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingcssrulesexpectedtxt">trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules-expected.txt</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingcssruleshtml">trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules.html</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingcsshtml">trunk/LayoutTests/inspector/codemirror/prettyprinting-css.html</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingjavascriptexpectedtxt">trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript-expected.txt</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorprettyprintingjavascripthtml">trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript.html</a></li>
<li>trunk/LayoutTests/inspector/codemirror/resources/</li>
<li>trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/</li>
<li>trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/</li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercolonexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercoloncss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercommaexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercommacss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenrulesexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenrulescss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenvaluesexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenvaluescss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvalueexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvaluecss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotappendsemicolonexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotappendsemicoloncss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsinvalidpropertyisnotremovedexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsinvalidpropertyisnotremovedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestskeepprefixedvalueexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestskeepprefixedvaluecss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovenewlinebetweenvaluesexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovenewlinebetweenvaluescss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecolonexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecoloncss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecommentexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecommentcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeinvalidpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeinvalidpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeprefixedpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeprefixedpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforepropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforepropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforesemicolonexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforesemicoloncss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbycommentexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbycommentcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyinvalidpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyinvalidpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyprefixedpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyprefixedpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbypropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbypropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbycommentexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbycommentcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbypropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbypropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbycommentexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbycommentcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyinvalidpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyinvalidpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyprefixedpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyprefixedpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbypropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbypropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertyexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css</a></li>
<li>trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/</li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsbasicexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsbasiccss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestscalcexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestscalccss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsgradientexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsgradientcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestskeyframesexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestskeyframescss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsmediaqueryexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsmediaquerycss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsselectorsexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsselectorscss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestswrappingexpectedcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping-expected.css</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestswrappingcss">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping.css</a></li>
<li>trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/</li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsblockcommentexpectedjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment-expected.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsblockcommentjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestssinglestatementblocksexpectedjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks-expected.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestssinglestatementblocksjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsswitchcasedefaultexpectedjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default-expected.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsswitchcasedefaultjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default.js</a></li>
<li><a href="#trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingutilitiesjs">trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/utilities.js</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li>trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/</li>
<li>trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/</li>
<li>trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/</li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (189240 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-09-02 01:37:59 UTC (rev 189240)
+++ trunk/LayoutTests/ChangeLog        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -1,3 +1,27 @@
</span><ins>+2015-09-01  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
+
+        Web Inspector: Move PrettyPrinting tests into LayoutTests
+        https://bugs.webkit.org/show_bug.cgi?id=148698
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/codemirror/resources/prettyprinting/css-rule-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/*.
+        * inspector/codemirror/resources/prettyprinting/css-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/*.
+        * inspector/codemirror/resources/prettyprinting/javascript-tests/*: Renamed from Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/*.
+        Move tests from PrettyPrinting tools into LayoutTests.
+
+        * inspector/codemirror/prettyprinting-css-expected.txt: Added.
+        * inspector/codemirror/prettyprinting-css-rules-expected.txt: Added.
+        * inspector/codemirror/prettyprinting-css-rules.html: Added.
+        * inspector/codemirror/prettyprinting-css.html: Added.
+        * inspector/codemirror/prettyprinting-javascript-expected.txt: Added.
+        * inspector/codemirror/prettyprinting-javascript.html: Added.
+        Add tests per CodeMirror mode.
+
+        * inspector/codemirror/resources/prettyprinting/utilities.js: Added.
+        (TestPage.registerInitializer):
+        Shared code between the pretty printing tests.
+
</ins><span class="cx"> 2015-09-01  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Range API should throw a TypeError for null Node parameters
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingcssexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-css-expected.txt (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-css-expected.txt                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-css-expected.txt        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+Test CSS pretty printing with CodeMirror.
+
+
+== Running test suite: CodeMirror.PrettyPrinting.CSS
+-- Running test case: CodeMirror.PrettyPrinting.CSS.basic.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.calc.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.gradient.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.keyframes.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.media-query.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.selectors.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSS.wrapping.css
+PASS
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingcssrulesexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules-expected.txt (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules-expected.txt                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules-expected.txt        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,88 @@
</span><ins>+Test CSS Rule pretty printing with CodeMirror.
+
+
+== Running test suite: CodeMirror.PrettyPrinting.CSSRules
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.invalid-property-is-not-removed.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-newline-between-values.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-colon.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-semicolon.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-prefixed-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-invalid-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.remove-whitespace-before-comment.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-comment-followed-by-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-comment-followed-by-prefixed-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-comment-followed-by-invalid-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-comment-followed-by-comment.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-property-followed-by-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-property-followed-by-prefixed-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-property-followed-by-invalid-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-property-followed-by-comment.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-invalid-property-followed-by-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-invalid-property-followed-by-prefixed-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-invalid-property-followed-by-invalid-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-invalid-property-followed-by-comment.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.split-property-without-semicolon-followed-by-comment-and-property.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.add-whitespace-between-values.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.add-whitespace-between-rules.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.add-whitespace-after-colon.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.add-whitespace-after-comma.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.do-not-append-semicolon.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.do-not-add-whitespace-before-prefixed-property-value.css
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.CSSRules.keep-prefixed-value.css
+PASS
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingcssruleshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules.html (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules.html                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-css-rules.html        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,49 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../http/tests/inspector/resources/inspector-test.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/prettyprinting/utilities.js&quot;&gt;&lt;/script&gt;
+&lt;script&gt;
+function test()
+{
+    let suite = InspectorTest.createAsyncSuite(&quot;CodeMirror.PrettyPrinting.CSSRules&quot;);
+
+    addPrettyPrintingTests(suite, &quot;css-rule&quot;, [
+        &quot;resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-newline-between-values.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-comment-followed-by-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-property-followed-by-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-property-followed-by-comment.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/add-whitespace-between-values.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/add-whitespace-between-rules.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/add-whitespace-after-colon.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/add-whitespace-after-comma.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/do-not-append-semicolon.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css&quot;,
+        &quot;resources/prettyprinting/css-rule-tests/keep-prefixed-value.css&quot;,
+    ]);
+
+    suite.runTestCasesAndFinish();
+}
+&lt;/script&gt;
+&lt;/head&gt;
+&lt;body onload=&quot;runTest()&quot;&gt;
+&lt;p&gt;Test CSS Rule pretty printing with CodeMirror.&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingcsshtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-css.html (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-css.html                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-css.html        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,28 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../http/tests/inspector/resources/inspector-test.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/prettyprinting/utilities.js&quot;&gt;&lt;/script&gt;
+&lt;script&gt;
+function test()
+{
+    let suite = InspectorTest.createAsyncSuite(&quot;CodeMirror.PrettyPrinting.CSS&quot;);
+
+    addPrettyPrintingTests(suite, &quot;text/css&quot;, [
+        &quot;resources/prettyprinting/css-tests/basic.css&quot;,
+        &quot;resources/prettyprinting/css-tests/calc.css&quot;,
+        &quot;resources/prettyprinting/css-tests/gradient.css&quot;,
+        &quot;resources/prettyprinting/css-tests/keyframes.css&quot;,
+        &quot;resources/prettyprinting/css-tests/media-query.css&quot;,
+        &quot;resources/prettyprinting/css-tests/selectors.css&quot;,
+        &quot;resources/prettyprinting/css-tests/wrapping.css&quot;,
+    ]);
+
+    suite.runTestCasesAndFinish();
+}
+&lt;/script&gt;
+&lt;/head&gt;
+&lt;body onload=&quot;runTest()&quot;&gt;
+&lt;p&gt;Test CSS pretty printing with CodeMirror.&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingjavascriptexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript-expected.txt (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript-expected.txt                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript-expected.txt        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,13 @@
</span><ins>+Test JavaScript pretty printing with CodeMirror.
+
+
+== Running test suite: CodeMirror.PrettyPrinting.JavaScript
+-- Running test case: CodeMirror.PrettyPrinting.JavaScript.block-comment.js
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.JavaScript.single-statement-blocks.js
+PASS
+
+-- Running test case: CodeMirror.PrettyPrinting.JavaScript.switch-case-default.js
+PASS
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorprettyprintingjavascripthtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript.html (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript.html                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/prettyprinting-javascript.html        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,24 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;script src=&quot;../../http/tests/inspector/resources/inspector-test.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/prettyprinting/utilities.js&quot;&gt;&lt;/script&gt;
+&lt;script&gt;
+function test()
+{
+    let suite = InspectorTest.createAsyncSuite(&quot;CodeMirror.PrettyPrinting.JavaScript&quot;);
+
+    addPrettyPrintingTests(suite, &quot;text/javascript&quot;, [
+        &quot;resources/prettyprinting/javascript-tests/block-comment.js&quot;,
+        &quot;resources/prettyprinting/javascript-tests/single-statement-blocks.js&quot;,
+        &quot;resources/prettyprinting/javascript-tests/switch-case-default.js&quot;,
+    ]);
+
+    suite.runTestCasesAndFinish();
+}
+&lt;/script&gt;
+&lt;/head&gt;
+&lt;body onload=&quot;runTest()&quot;&gt;
+&lt;p&gt;Test JavaScript pretty printing with CodeMirror.&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercolonexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespaceaftercolonexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-after-colon-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercoloncssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespaceaftercoloncss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-after-colon.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-colon.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display:none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercommaexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespaceaftercommaexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-after-comma-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+font-family: Helvetica, Arial;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespaceaftercommacssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespaceaftercommacss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-after-comma.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-after-comma.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+font-family: Helvetica,Arial;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenrulesexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespacebetweenrulesexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-between-rules-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,3 @@
</span><ins>+color: red;
+margin: auto;
+background-color: rgba(0, 0, 0, 0.5);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenrulescssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespacebetweenrulescss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-between-rules.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-rules.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color:red;margin:auto;background-color:rgba(0,0,0,0.5);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenvaluesexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespacebetweenvaluesexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-between-values-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+border: 1px solid black;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsaddwhitespacebetweenvaluescssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsaddwhitespacebetweenvaluescss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/add-whitespace-between-values.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/add-whitespace-between-values.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,6 @@
</span><ins>+border
+:
+1px
+solid
+black
+;
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvalueexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvalueexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+width: -webkit-calc(1px - 1px);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvaluecssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsdonotaddwhitespacebeforeprefixedpropertyvaluecss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-add-whitespace-before-prefixed-property-value.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+width: -webkit-calc(1px - 1px);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotappendsemicolonexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsdonotappendsemicolonexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/do-not-append-semicolon-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsdonotappendsemicoloncssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsdonotappendsemicoloncss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/do-not-append-semicolon.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/do-not-append-semicolon.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsinvalidpropertyisnotremovedexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsinvalidpropertyisnotremovedexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/invalid-property-is-not-removed-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsinvalidpropertyisnotremovedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsinvalidpropertyisnotremovedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/invalid-property-is-not-removed.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/invalid-property-is-not-removed.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestskeepprefixedvalueexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestskeepprefixedvalueexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/keep-prefixed-value-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+border: solid blue -webkit-calc(1px);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestskeepprefixedvaluecssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestskeepprefixedvaluecss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/keep-prefixed-value.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/keep-prefixed-value.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+border: solid blue -webkit-calc(1px);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovenewlinebetweenvaluesexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovenewlinebetweenvaluesexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-newline-between-values-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+background: repeating-radial-gradient(circle, purple, purple 10px, #4b026f 10px, #4b026f 20px);
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovenewlinebetweenvaluescssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovenewlinebetweenvaluescss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-newline-between-values.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-newline-between-values.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,7 @@
</span><ins>+background: repeating-radial-gradient(
+    circle,
+    purple,
+    purple 10px,
+    #4b026f 10px,
+    #4b026f 20px
+);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecolonexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforecolonexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-colon-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecoloncssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforecoloncss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-colon.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-colon.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display : none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecommentexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforecommentexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-comment-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforecommentcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforecommentcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-comment.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-comment.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeinvalidpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforeinvalidpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-invalid-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeinvalidpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforeinvalidpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-invalid-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-invalid-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+ invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeprefixedpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforeprefixedpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-prefixed-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+-webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforeprefixedpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforeprefixedpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-prefixed-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-prefixed-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+ -webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforepropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforepropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforepropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforepropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+ display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforesemicolonexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforesemicolonexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-semicolon-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestsremovewhitespacebeforesemicoloncssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestsremovewhitespacebeforesemicoloncss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/remove-whitespace-before-semicolon.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/remove-whitespace-before-semicolon.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color ;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbycommentexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbycommentexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-comment-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+/* display: none; */
+/*another comment*/
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbycommentcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbycommentcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-comment.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-comment.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */ /*another comment*/
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyinvalidpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbyinvalidpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-invalid-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+/* display: none; */
+invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyinvalidpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbyinvalidpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-invalid-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-invalid-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */ invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyprefixedpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbyprefixedpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-prefixed-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+/* display: none; */
+-webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbyprefixedpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbyprefixedpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-prefixed-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-prefixed-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */ -webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbypropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbypropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+/* display: none; */
+color: red;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitcommentfollowedbypropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitcommentfollowedbypropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-comment-followed-by-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-comment-followed-by-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+/* display: none; */ color: red;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbycommentexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbycommentexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-comment-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color;
+/* comment */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbycommentcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbycommentcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-comment.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-comment.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color; /* comment */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-invalid-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color;
+invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbyinvalidpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-invalid-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color; invalid;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color;
+-webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbyprefixedpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-prefixed-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color; -webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbypropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbypropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color;
+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitinvalidpropertyfollowedbypropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitinvalidpropertyfollowedbypropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-invalid-property-followed-by-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-invalid-property-followed-by-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color;display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbycommentexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbycommentexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-comment-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+display: none;
+/* comment */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbycommentcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbycommentcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-comment.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-comment.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none; /* comment */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyinvalidpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbyinvalidpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-invalid-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+display: none;
+color;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyinvalidpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbyinvalidpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-invalid-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-invalid-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+display: none; color;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyprefixedpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbyprefixedpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-prefixed-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color: red;
+-webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbyprefixedpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbyprefixedpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-prefixed-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-prefixed-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color: red; -webkit-property: value;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbypropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbypropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,2 @@
</span><ins>+color: red;
+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertyfollowedbypropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertyfollowedbypropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-followed-by-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-followed-by-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color: red; display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertyexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertyexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,3 @@
</span><ins>+color: red
+/* comment */
+display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcssruletestssplitpropertywithoutsemicolonfollowedbycommentandpropertycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-rule-tests/split-property-without-semicolon-followed-by-comment-and-property.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+color: red /* comment */ display: none;
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsbasicexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsbasicexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/basic-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,95 @@
</span><ins>+/* RESET */
+html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p,
+blockquote, fieldset, input, abbr, article, aside, command, details,
+figcaption, figure, footer, header, hgroup, mark, meter, nav, output,
+progress, section, summary, time {
+    margin: 0;
+    padding: 0;
+}
+
+h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong,
+th, figcaption {
+    font-size: 1em;
+    font-weight: normal;
+    font-style: normal;
+}
+
+fieldset, iframe {
+    border: none
+}
+
+table {
+    border-collapse: collapse;
+    border-spacing: 0
+}
+
+article, aside, footer, header, hgroup, nav, section, figure, figcaption {
+    display: block;
+}
+
+/* FIXME: extra whitespace */
+caption , th {
+    text-align: left;
+}
+
+/* IMPORTANT */
+/* FIXME: whitespace between &quot;!&quot; and &quot;important&quot; can be improved */
+body {
+    color: red !important;
+}
+
+body {
+    color: red !important;
+}
+
+body {
+    color: red ! important;
+}
+
+/* INLINE COMMENT */
+body {
+    color: red; /* blue */
+}
+
+/* URLS */
+.myimage {
+    background-image: url(http://example.com/image.png), url(two.png)
+}
+
+.myimage {
+    background-image: url(&quot;http://example.com/image.png&quot;), url(&quot;two.png&quot;)
+}
+
+/* PREFIXED SELECTORS AND PROPERTIES */
+.foo -webkit-any(a, b, c) {
+    -webkit-transition: all;
+    color: red
+}
+
+/* PSEUDO SELECTORS */
+a:link, a:visited {
+    color: black
+}
+
+/* PSEUDO ELEMENTS */
+p::before, p::after {
+    content: &quot;test&quot;;
+}
+
+/* RGB, HSL */
+body {
+    color: rgb(1, 1, 1);
+    color: rgba(100, 0, 255, 0.5);
+    color: hsl(120, 100%, 50%);
+    color: hsla(120, 60%, 70%, 0.3);
+}
+
+/*
+ * This is a multi-line comment.
+ * - with indentation
+ * - and is generally awesome.
+ */
+body {
+    color: red
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsbasiccssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsbasiccss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/basic.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/basic.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,41 @@
</span><ins>+/* RESET */
+html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input,abbr,article,aside,command,details,figcaption,figure,footer,header,hgroup,mark,meter,nav,output,progress,section,summary,time { margin: 0; padding: 0; }
+h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th,figcaption { font-size: 1em; font-weight: normal; font-style: normal; }
+fieldset,iframe{border:none}
+table{border-collapse:collapse;border-spacing:0}
+article,aside,footer,header,hgroup,nav,section,figure,figcaption{display: block;}
+
+/* FIXME: extra whitespace */
+caption  ,   th { text-align: left; }
+
+/* IMPORTANT */
+/* FIXME: whitespace between &quot;!&quot; and &quot;important&quot; can be improved */
+body{color:red!important;}
+body{color:red !important;}
+body{color:red ! important;}
+
+/* INLINE COMMENT */
+body{color:red;/* blue */}
+
+/* URLS */
+.myimage{background-image:url(http://example.com/image.png),url(two.png)}
+.myimage{background-image:url(&quot;http://example.com/image.png&quot;),url(&quot;two.png&quot;)}
+
+/* PREFIXED SELECTORS AND PROPERTIES */
+.foo -webkit-any(a,b,c){-webkit-transition:all;color:red}
+
+/* PSEUDO SELECTORS */
+a:link,a:visited{color:black}
+
+/* PSEUDO ELEMENTS */
+p::before,p::after{content:&quot;test&quot;;}
+
+/* RGB, HSL */
+body{color:rgb(1,1,1);color:rgba(100,0,255,0.5);color:hsl(120,100%,50%);color:hsla(120,60%,70%,0.3);}
+
+/*
+ * This is a multi-line comment.
+ * - with indentation
+ * - and is generally awesome.
+ */
+body{color:red}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestscalcexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestscalcexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/calc-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,22 @@
</span><ins>+/* CALC EXPRESSIONS */
+/* FIXME: negative numbers can be improved */
+div {
+    width: -webkit-calc(100% + 80px + 1em);
+}
+
+div {
+    width: -webkit-calc(100% / 6);
+}
+
+div {
+    width: -webkit-calc(10% * 6);
+}
+
+div {
+    width: calc(-960px + 75%);
+}
+
+div {
+    width: calc(100vw-50vw);
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestscalccssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestscalccss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/calc.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/calc.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,7 @@
</span><ins>+/* CALC EXPRESSIONS */
+/* FIXME: negative numbers can be improved */
+div{width:-webkit-calc(100%+80px+1em);}
+div{width:-webkit-calc(100%/6);}
+div{width:-webkit-calc(10%*6);}
+div{width:calc(-960px+75%);}
+div{width:calc(100vw-50vw);}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsgradientexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsgradientexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/gradient-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,9 @@
</span><ins>+.dot-nav:nth-child(1n) li a.active {
+    top: 0;
+    background: #08c;
+    background: -webkit-gradient(linear, lefttop, leftbottom, color-stop(0%, rgb(126, 198, 234)), color-stop(24%, rgb(70, 179, 234)), color-stop(100%, rgb(3, 135, 201)));
+    background: -webkit-linear-gradient(top, rgb(126, 198, 234) 0%, rgb(70, 179, 234) 45%, rgb(3, 135, 201) 100%);
+    background: -moz-linear-gradient(top, rgb(126, 198, 234) 0%, rgb(70, 179, 234) 45%, rgb(3, 135, 201) 100%);
+    background: linear-gradient(top, rgb(126, 198, 234) 0%, rgb(70, 179, 234) 45%, rgb(3, 135, 201) 100%);
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsgradientcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsgradientcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/gradient.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/gradient.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,7 @@
</span><ins>+.dot-nav:nth-child(1n) li a.active {
+    top:0;background:#08c;
+        background:-webkit-gradient(linear,lefttop,leftbottom,color-stop(0%,rgb(126,198,234)),color-stop(24%,rgb(70,179,234)),color-stop(100%,rgb(3,135,201)));
+        background:-webkit-linear-gradient(top,rgb(126,198,234)0%,rgb(70,179,234)45%,rgb(3,135,201)100%);
+        background:   -moz-linear-gradient(top,rgb(126,198,234)0%,rgb(70,179,234)45%,rgb(3,135,201)100%);
+        background:        linear-gradient(top,rgb(126,198,234)0%,rgb(70,179,234)45%,rgb(3,135,201)100%);
+}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestskeyframesexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestskeyframesexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/keyframes-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,10 @@
</span><ins>+@-webkit-keyframes spin {
+    0% {
+        -webkit-transform: rotate(-180deg) translate(0px, 0px);
+    }
+
+    100% {
+        -webkit-transform: rotate(180deg) translate(10px, 75px);
+    }
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestskeyframescssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestskeyframescss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/keyframes.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/keyframes.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1 @@
</span><ins>+@-webkit-keyframes spin{0%{-webkit-transform:rotate(-180deg)translate(0px,0px);}100%{-webkit-transform:rotate(180deg)translate(10px,75px);}}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsmediaqueryexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsmediaqueryexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/media-query-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,35 @@
</span><ins>+/* MEDIA QUERY INDENTATION */
+@media print {
+    body, #main, #content {
+        color: #000 !important;
+    }
+
+    a, a:link, a:visited {
+        color: #000 !important;
+        text-decoration: none !important;
+    }
+
+    #tabs, #globalheader, #globalfooter, #directorynav, .noprint, .hide {
+        display: none !important;
+    }
+
+    #main a.pdf, #main a.html, #main a.qt, #main a.ical, #main a.dl, #main a.dmg,
+    #main a.zip, #main a.keynote, #main a.audio {
+        padding-left: 0;
+        background-image: none;
+    }
+}
+
+/* MEDIA QUERY */
+@media screen and (max-device-width:480px) {
+    html {
+        -webkit-text-size-adjust: none;
+    }
+}
+
+@media not ((screen) and (print)), (print) {
+    body {
+        color: red
+    }
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsmediaquerycssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsmediaquerycss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/media-query.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/media-query.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,6 @@
</span><ins>+/* MEDIA QUERY INDENTATION */
+@media print{body,#main,#content{color:#000!important;}a,a:link,a:visited{color:#000!important;text-decoration:none!important;}#tabs,#globalheader,#globalfooter,#directorynav,.noprint,.hide{display:none!important;}#main a.pdf,#main a.html,#main a.qt,#main a.ical,#main a.dl,#main a.dmg,#main a.zip,#main a.keynote,#main a.audio{padding-left:0;background-image:none;}}
+
+/* MEDIA QUERY */
+@media screen and(max-device-width:480px){html{-webkit-text-size-adjust:none;}}
+@media not((screen)and(print)),(print){body{color:red}}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsselectorsexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsselectorsexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/selectors-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,8 @@
</span><ins>+/* SHORT SELECTOR, EMPTY CONTENT */
+a {}
+
+/* COMPLEX SELECTOR */
+div div &gt; div#id.foo.bar:hover .something &gt; .child ~ .sibling + .sibling::after {
+    color: red;
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestsselectorscssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestsselectorscss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/selectors.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/selectors.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,5 @@
</span><ins>+/* SHORT SELECTOR, EMPTY CONTENT */
+a{}
+
+/* COMPLEX SELECTOR */
+div div&gt;div#id.foo.bar:hover .something&gt;.child~.sibling+.sibling::after{color:red;}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestswrappingexpectedcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestswrappingexpectedcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping-expected.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/wrapping-expected.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping-expected.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping-expected.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,21 @@
</span><ins>+/* LONG LISTS SHOULD WRAP */
+a.browsewebappss, a.businessstores, a.buyiphones, a.buynows, a.buynows-arrow,
+a.comingsoons, p::before, a.descargarahoras, a.downloadituness, a.downloadnows,
+a.finds, a.freetrials, a.getstarteds, a.gos, a.howtoapplys, a.howtobuys,
+a.joinnows, a.learnmores, a.nikebuynows, a.notifymes, a.ordernows,
+a.preordernows, a.preorders, a.reserves, a.startyoursearchs, a.submits,
+a.tryamacs, a.upgradenows {
+    color: red
+}
+
+a.browsewebappss:hover, a.businessstores:hover, a.buyiphones:hover,
+a.buynows:hover, a.buynows-arrow:hover, a.comingsoons:hover, p::before,
+a.descargarahoras:hover, a.downloadituness:hover, a.downloadnows:hover,
+a.finds:hover, a.freetrials:hover, a.getstarteds:hover, a.gos:hover,
+a.howtoapplys:hover, a.howtobuys:hover, a.joinnows:hover, a.learnmores:hover,
+a.nikebuynows:hover, a.notifymes:hover, a.ordernows:hover, a.preordernows:hover,
+a.preorders:hover, a.reserves:hover, a.startyoursearchs:hover, a.submits:hover,
+a.tryamacs:hover, a.upgradenows:hover {
+    color: red
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingcsstestswrappingcssfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingcsstestswrappingcss"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping.css (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/css-tests/wrapping.css) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping.css                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/css-tests/wrapping.css        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,3 @@
</span><ins>+/* LONG LISTS SHOULD WRAP */
+a.browsewebappss,a.businessstores,a.buyiphones,a.buynows,a.buynows-arrow,a.comingsoons,p::before,a.descargarahoras,a.downloadituness,a.downloadnows,a.finds,a.freetrials,a.getstarteds,a.gos,a.howtoapplys,a.howtobuys,a.joinnows,a.learnmores,a.nikebuynows,a.notifymes,a.ordernows,a.preordernows,a.preorders,a.reserves,a.startyoursearchs,a.submits,a.tryamacs,a.upgradenows {color:red}
+a.browsewebappss:hover,a.businessstores:hover,a.buyiphones:hover,a.buynows:hover,a.buynows-arrow:hover,a.comingsoons:hover,p::before,a.descargarahoras:hover,a.downloadituness:hover,a.downloadnows:hover,a.finds:hover,a.freetrials:hover,a.getstarteds:hover,a.gos:hover,a.howtoapplys:hover,a.howtobuys:hover,a.joinnows:hover,a.learnmores:hover,a.nikebuynows:hover,a.notifymes:hover,a.ordernows:hover,a.preordernows:hover,a.preorders:hover,a.reserves:hover,a.startyoursearchs:hover,a.submits:hover,a.tryamacs:hover,a.upgradenows:hover {color:red}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsblockcommentexpectedjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestsblockcommentexpectedjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment-expected.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/block-comment-expected.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment-expected.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment-expected.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,4 @@
</span><ins>+/*
+ * Test
+ */
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsblockcommentjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestsblockcommentjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/block-comment.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/block-comment.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,3 @@
</span><ins>+/*
+ * Test
+ */
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestssinglestatementblocksexpectedjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestssinglestatementblocksexpectedjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks-expected.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/single-statement-blocks-expected.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks-expected.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks-expected.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,89 @@
</span><ins>+if (true)
+    if (true)
+        alert(1);
+    else if (true)
+        alert(2);
+    else 
+        alert(3);
+
+if (true)
+    if (true) {
+        alert(1)
+    } else 
+        alert(2);
+
+if (true)
+    if (true) {
+        var a = 1;
+        var b = {
+            a: 1
+        };
+    } else 
+        alert(2);
+
+function() {
+    for (var i = 0; i &lt; 100; ++i)
+        if (true)
+            return true;
+    return false;
+}
+
+function foo(cm) {
+    if (true)
+        return;
+    else 
+        false;
+}
+
+if (true) {
+    if (false)
+        if (true) {
+            true;
+        }
+    return 2;
+}
+
+if (true) {
+    if (false)
+        if (true)
+            true;
+        else 
+            false;
+    else if (true)
+        true;
+    else 
+        false;
+}
+
+if (true)
+    for (; ;)
+        true;
+else 
+    while (true)
+        true;
+
+function() {
+    if (true) {
+        for (; ;)
+            true;
+    } else if (1)
+        for (; ;)
+            true;
+    return;
+}
+
+do 
+    true;
+while (true);
+
+if (x == 1)
+    alert(1);
+else if (x == 2)
+    alert(2);
+else 
+    alert(3);
+
+// FIXME: Failing.
+
+// if(true)try{true;}catch(e){true;}finally{true;}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestssinglestatementblocksjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestssinglestatementblocksjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/single-statement-blocks.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/single-statement-blocks.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+if(true)if(true)alert(1);else if(true)alert(2);else alert(3);
+
+if(true)if(true){alert(1)}else alert(2);
+
+if(true)if(true){var a=1;var b={a:1};}else alert(2);
+
+function(){for(var i=0;i&lt;100;++i)if(true)return true;return false;}
+
+function foo(cm){if(true)return;else false;}
+
+if(true){if(false)if(true){true;}return 2;}
+
+if(true){if(false)if(true)true;else false;else if(true)true;else false;}
+
+if(true)for(;;)true;else while(true)true;
+
+function(){if(true){for(;;)true;}else if(1)for(;;)true;return;}
+
+do true;while(true);
+
+if(x==1)alert(1);else if(x==2)alert(2);else alert(3);
+
+// FIXME: Failing.
+
+// if(true)try{true;}catch(e){true;}finally{true;}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsswitchcasedefaultexpectedjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestsswitchcasedefaultexpectedjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default-expected.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/switch-case-default-expected.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default-expected.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default-expected.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,27 @@
</span><ins>+function Ctor1() {
+    this.case = 1;
+    this.something = 2;
+}
+function Ctor2() {
+    this.default = 1;
+    this.something = 2;
+}
+
+switch (x) {
+case &quot;abc&quot;:
+    return this.default;
+case &quot;def&quot;:
+    return this.case;
+default:
+    return 3;
+}
+
+switch (x) {
+case &quot;abc&quot;:
+    return 1;
+case &quot;def&quot;:
+    return 2;
+default:
+    return 3;
+}
+
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingjavascripttestsswitchcasedefaultjsfromrev189240trunkSourceWebInspectorUIToolsPrettyPrintingjstestsswitchcasedefaultjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default.js (from rev 189240, trunk/Source/WebInspectorUI/Tools/PrettyPrinting/js-tests/switch-case-default.js) (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/javascript-tests/switch-case-default.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,13 @@
</span><ins>+function Ctor1(){this.case=1;this.something=2;}
+function Ctor2(){this.default=1;this.something=2;}
+
+switch(x){case &quot;abc&quot;:return this.default;case &quot;def&quot;:return this.case;default:return 3;}
+
+switch(x){
+  case &quot;abc&quot;:
+    return 1;
+  case &quot;def&quot;:
+    return 2;
+  default:
+    return 3;
+}
</ins></span></pre></div>
<a id="trunkLayoutTestsinspectorcodemirrorresourcesprettyprintingutilitiesjs"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/utilities.js (0 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/utilities.js                                (rev 0)
+++ trunk/LayoutTests/inspector/codemirror/resources/prettyprinting/utilities.js        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -0,0 +1,63 @@
</span><ins>+TestPage.registerInitializer(function() {
+    function loadPrettyPrintingTestAndExpectedResults(testURL) {
+        let expectedURL = testURL.replace(/\.([^\.]+)$/, &quot;-expected.$1&quot;);
+        return Promise.all([
+            NetworkAgent.loadResource(WebInspector.frameResourceManager.mainFrame.id, testURL),
+            NetworkAgent.loadResource(WebInspector.frameResourceManager.mainFrame.id, expectedURL)
+        ]).then(function(results) {
+            return Promise.resolve({testText: results[0].content, expectedText: results[1].content });
+        });
+    }
+
+    function runPrettyPrintingTest(mode, testName, testURL) {
+        return loadPrettyPrintingTestAndExpectedResults(testURL).then(function(results) {
+            let {testText, expectedText} = results;
+
+            let editor = CodeMirror(document.createElement(&quot;div&quot;));
+            editor.setOption(&quot;mode&quot;, mode);
+            editor.setValue(testText);
+
+            const start = {line: 0, ch: 0};
+            const end = {line: editor.lineCount() - 1};
+            const indentString = &quot;    &quot;;
+            let originalLineEndings = [];
+            let formattedLineEndings = [];
+            let mapping = {original: [0], formatted: [0]};
+            let builder = new WebInspector.FormatterContentBuilder(mapping, originalLineEndings, formattedLineEndings, 0, 0, indentString);
+            let formatter = new WebInspector.Formatter(editor, builder);
+            formatter.format(start, end);
+
+            let pass = builder.formattedContent === expectedText;
+            InspectorTest.log(pass ? &quot;PASS&quot; : &quot;FAIL&quot;);
+
+            if (!pass) {
+                InspectorTest.log(&quot;Input:&quot;);
+                InspectorTest.log(&quot;-----------&quot;);
+                InspectorTest.log(testText);
+                InspectorTest.log(&quot;-----------&quot;);
+                InspectorTest.log(&quot;Formatted Output: &quot; + builder.formattedContent.length);
+                InspectorTest.log(&quot;-----------&quot;);
+                InspectorTest.log(builder.formattedContent);
+                InspectorTest.log(&quot;-----------&quot;);
+                InspectorTest.log(&quot;Expected Output: &quot; + expectedText.length);
+                InspectorTest.log(&quot;-----------&quot;);
+                InspectorTest.log(expectedText);
+                InspectorTest.log(&quot;-----------&quot;);
+            }
+        });
+    }
+
+    window.addPrettyPrintingTests = function(suite, mode, tests) {
+        let testPageURL = WebInspector.frameResourceManager.mainFrame.mainResource.url;
+        let testPageResourcesURL = testPageURL.substring(0, testPageURL.lastIndexOf(&quot;/&quot;));            
+
+        for (let test of tests) {
+            let testName = test.substring(test.lastIndexOf(&quot;/&quot;) + 1);
+            let testURL = testPageResourcesURL + &quot;/&quot; + test;
+            suite.addTestCase({
+                name: suite.name + &quot;.&quot; + testName,
+                test: (resolve, reject) =&gt; { runPrettyPrintingTest(mode, testName, testURL).then(resolve).catch(reject); }
+            });
+        }
+    };
+});
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (189240 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2015-09-02 01:37:59 UTC (rev 189240)
+++ trunk/Source/WebInspectorUI/ChangeLog        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -1,3 +1,16 @@
</span><ins>+2015-09-01  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
+
+        Web Inspector: Move PrettyPrinting tests into LayoutTests
+        https://bugs.webkit.org/show_bug.cgi?id=148698
+
+        Reviewed by Timothy Hatcher.
+
+        * Tools/PrettyPrinting/index.html:
+        Modify the relative path to the tests which are now in LayoutTests.
+
+        * UserInterface/Test.html:
+        Load CodeMirror and related resources for Formatting.
+
</ins><span class="cx"> 2015-09-01  Matt Baker  &lt;mattbaker@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: REGRESSION (r187873): Location column icon is missing in timeline data grids
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIToolsPrettyPrintingindexhtml"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/Tools/PrettyPrinting/index.html (189240 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/Tools/PrettyPrinting/index.html        2015-09-02 01:37:59 UTC (rev 189240)
+++ trunk/Source/WebInspectorUI/Tools/PrettyPrinting/index.html        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -245,9 +245,9 @@
</span><span class="cx">     }
</span><span class="cx">     function runJavaScriptTests(callback) {
</span><span class="cx">         _runTests(callback, [
</span><del>-            &quot;js-tests/block-comment.js&quot;,
-            &quot;js-tests/single-statement-blocks.js&quot;,
-            &quot;js-tests/switch-case-default.js&quot;,
</del><ins>+            &quot;javascript-tests/block-comment.js&quot;,
+            &quot;javascript-tests/single-statement-blocks.js&quot;,
+            &quot;javascript-tests/switch-case-default.js&quot;,
</ins><span class="cx">         ]);
</span><span class="cx">     }
</span><span class="cx">     function runCssRuleTests(callback) {
</span><span class="lines">@@ -312,14 +312,15 @@
</span><span class="cx"> 
</span><span class="cx">             // Load test and expected results.
</span><span class="cx">             var test = manifest[index];
</span><del>-            var expected = test.replace(/\.([^\.]+)$/, &quot;-expected.$1&quot;);
</del><ins>+            var testURL = &quot;../../../../LayoutTests/inspector/codemirror/resources/prettyprinting/&quot; + test;
+            var expectedURL = testURL.replace(/\.([^\.]+)$/, &quot;-expected.$1&quot;);
</ins><span class="cx">             var xhr1 = new XMLHttpRequest;
</span><del>-            xhr1.open(&quot;GET&quot;, test, false);
</del><ins>+            xhr1.open(&quot;GET&quot;, testURL, false);
</ins><span class="cx">             xhr1.send();
</span><del>-            var testData = xhr1.responseText;
</del><span class="cx">             var xhr2 = new XMLHttpRequest;
</span><del>-            xhr2.open(&quot;GET&quot;, expected, false);
</del><ins>+            xhr2.open(&quot;GET&quot;, expectedURL, false);
</ins><span class="cx">             xhr2.send();
</span><ins>+            var testData = xhr1.responseText;
</ins><span class="cx">             var expectedData = xhr2.responseText;
</span><span class="cx"> 
</span><span class="cx">             // Run the test.
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceTesthtml"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Test.html (189240 => 189241)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Test.html        2015-09-02 01:37:59 UTC (rev 189240)
+++ trunk/Source/WebInspectorUI/UserInterface/Test.html        2015-09-02 01:55:49 UTC (rev 189241)
</span><span class="lines">@@ -44,6 +44,10 @@
</span><span class="cx">     &lt;script src=&quot;Base/URLUtilities.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;Base/Utilities.js&quot;&gt;&lt;/script&gt;
</span><span class="cx"> 
</span><ins>+    &lt;script src=&quot;External/CodeMirror/codemirror.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;External/CodeMirror/css.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;External/CodeMirror/htmlmixed.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;External/CodeMirror/javascript.js&quot;&gt;&lt;/script&gt;
</ins><span class="cx">     &lt;script src=&quot;External/Esprima/esprima.js&quot;&gt;&lt;/script&gt;
</span><span class="cx"> 
</span><span class="cx">     &lt;script src=&quot;Protocol/InspectorBackend.js&quot;&gt;&lt;/script&gt;
</span><span class="lines">@@ -144,6 +148,11 @@
</span><span class="cx">     &lt;script src=&quot;Controllers/StorageManager.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;Controllers/TimelineManager.js&quot;&gt;&lt;/script&gt;
</span><span class="cx"> 
</span><ins>+    &lt;script src=&quot;Controllers/Formatter.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;Controllers/FormatterContentBuilder.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;Views/CodeMirrorAdditions.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;Views/CodeMirrorFormatters.js&quot;&gt;&lt;/script&gt;
+
</ins><span class="cx">     &lt;script type=&quot;text/javascript&quot;&gt;
</span><span class="cx">         WebInspector.loaded();
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>