Title: [154942] trunk/LayoutTests
Revision
154942
Author
[email protected]
Date
2013-09-01 06:53:30 -0700 (Sun, 01 Sep 2013)

Log Message

Web Inspector: A little more test cleanup
https://bugs.webkit.org/show_bug.cgi?id=120575

Patch by Joseph Pecoraro <[email protected]> on 2013-09-01
Reviewed by Timothy Hatcher.

Give tests names and remove unnecessary script type attributes.

* inspector-protocol/debugger/removeBreakpoint-expected.txt:
* inspector-protocol/debugger/removeBreakpoint.html:
* inspector-protocol/debugger/setBreakpoint-autoContinue-expected.txt:
* inspector-protocol/debugger/setBreakpoint-autoContinue.html:
* inspector-protocol/debugger/setBreakpoint-column-expected.txt:
* inspector-protocol/debugger/setBreakpoint-column.html:
* inspector-protocol/debugger/setBreakpoint-condition-expected.txt:
* inspector-protocol/debugger/setBreakpoint-condition.html:
* inspector-protocol/debugger/setBreakpoint-expected.txt:
* inspector-protocol/debugger/setBreakpoint.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (154941 => 154942)


--- trunk/LayoutTests/ChangeLog	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/ChangeLog	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,23 @@
+2013-09-01  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: A little more test cleanup
+        https://bugs.webkit.org/show_bug.cgi?id=120575
+
+        Reviewed by Timothy Hatcher.
+
+        Give tests names and remove unnecessary script type attributes.
+
+        * inspector-protocol/debugger/removeBreakpoint-expected.txt:
+        * inspector-protocol/debugger/removeBreakpoint.html:
+        * inspector-protocol/debugger/setBreakpoint-autoContinue-expected.txt:
+        * inspector-protocol/debugger/setBreakpoint-autoContinue.html:
+        * inspector-protocol/debugger/setBreakpoint-column-expected.txt:
+        * inspector-protocol/debugger/setBreakpoint-column.html:
+        * inspector-protocol/debugger/setBreakpoint-condition-expected.txt:
+        * inspector-protocol/debugger/setBreakpoint-condition.html:
+        * inspector-protocol/debugger/setBreakpoint-expected.txt:
+        * inspector-protocol/debugger/setBreakpoint.html:
+
 2013-09-01  Xabier Rodriguez Calvar  <[email protected]>
 
         Fixed typo in media/video-volume-slider.html

Modified: trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint-expected.txt (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint-expected.txt	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint-expected.txt	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,5 @@
+Debugger.removeBreakpoint
+
 Breakpoints Enabled
 Found breakpoint.js
 Set Breakpoint, Triggering it

Modified: trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint.html (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint.html	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/removeBreakpoint.html	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,6 +1,6 @@
 <html>
 <head>
-<script type="text/_javascript_" src=""
+<script src=""
 <script src=""
 <script>
 function test()
@@ -58,5 +58,6 @@
 </script>
 </head>
 <body _onload_="runTest()">
+<p>Debugger.removeBreakpoint</p>
 </body>
 </html>

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue-expected.txt (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue-expected.txt	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue-expected.txt	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,5 @@
+Debugger.setBreakpoint options.autoContinue
+
 Breakpoints Enabled
 Found breakpoint.js
 Running breakpointAutomaticallyContinue multiple times with automatically continue

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue.html (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue.html	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-autoContinue.html	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,6 +1,6 @@
 <html>
 <head>
-<script type="text/_javascript_" src=""
+<script src=""
 <script src=""
 <script>
 function test()
@@ -59,5 +59,6 @@
 </script>
 </head>
 <body _onload_="runTest()">
+<p>Debugger.setBreakpoint options.autoContinue</p>
 </body>
 </html>

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column-expected.txt (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column-expected.txt	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column-expected.txt	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,5 @@
+Debugger.setBreakpoint on line:column in <script>
+
 Breakpoints Enabled
 Found <script>
 Running testFunction

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column.html (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column.html	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-column.html	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,6 +1,6 @@
 <html>
 <head>
-<script type="text/_javascript_" src=""
+<script src=""
 <script>
 // Put this here instead of on <body onload> to prevent an extra Debugger.scriptParsed event.
 window._onload_ = runTest;
@@ -47,6 +47,7 @@
 </script>
 </head>
 <body>
+<p>Debugger.setBreakpoint on line:column in &lt;script&gt;</p>
 <script>// Line 0
 function testFunction() {// Line 1
 var a = 1;var b = a + 1;// Line 2

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition-expected.txt (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition-expected.txt	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition-expected.txt	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,5 @@
+Debugger.setBreakpoint options.condition
+
 Breakpoints Enabled
 Found breakpoint.js
 Running breakpointWithCondition multiple times

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition.html (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition.html	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-condition.html	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,6 +1,6 @@
 <html>
 <head>
-<script type="text/_javascript_" src=""
+<script src=""
 <script src=""
 <script>
 function test()
@@ -80,5 +80,6 @@
 </script>
 </head>
 <body _onload_="runTest()">
+<p>Debugger.setBreakpoint options.condition</p>
 </body>
 </html>

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-expected.txt (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-expected.txt	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint-expected.txt	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,3 +1,5 @@
+Debugger.setBreakpoint on line:0 in <script src=""
+
 Breakpoints Enabled
 Found breakpoint.js
 PASS: Received error setting duplicate breakpoint: Breakpoint at specified location already exists.

Modified: trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint.html (154941 => 154942)


--- trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint.html	2013-09-01 11:23:35 UTC (rev 154941)
+++ trunk/LayoutTests/inspector-protocol/debugger/setBreakpoint.html	2013-09-01 13:53:30 UTC (rev 154942)
@@ -1,6 +1,6 @@
 <html>
 <head>
-<script type="text/_javascript_" src=""
+<script src=""
 <script src=""
 <script>
 function test()
@@ -42,5 +42,6 @@
 </script>
 </head>
 <body _onload_="runTest()">
+<p>Debugger.setBreakpoint on line:0 in &lt;script src=""
 </body>
 </html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to