Diff
Modified: trunk/LayoutTests/ChangeLog (174045 => 174046)
--- trunk/LayoutTests/ChangeLog 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/ChangeLog 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,3 +1,22 @@
+2014-09-28 Sungmann Cho <[email protected]>
+
+ Fix some minor typos: psuedo -> pseudo
+ https://bugs.webkit.org/show_bug.cgi?id=137192
+
+ Reviewed by Alexey Proskuryakov.
+
+ * fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements-expected.txt:
+ * fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements.html:
+ * fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-expected.txt:
+ * fast/dom/Window/getMatchedCSSRules-with-pseudo-elements.html:
+ * fast/selectors/159.html:
+ * fast/selectors/160.html:
+ * fast/selectors/166.html:
+ * platform/efl/fast/selectors/166-expected.txt:
+ * platform/gtk/fast/selectors/166-expected.txt:
+ * platform/ios-sim/fast/selectors/166-expected.txt:
+ * platform/mac/fast/selectors/166-expected.txt:
+
2014-09-26 Filip Pizlo <[email protected]>
Disable function.arguments
Modified: trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements-expected.txt (174045 => 174046)
--- trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,4 +1,4 @@
-getMatchedCSSRules with invalid Psuedo Elements
+getMatchedCSSRules with invalid Pseudo Elements
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements.html (174045 => 174046)
--- trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements.html 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-invalid-pseudo-elements.html 2014-09-28 23:18:25 UTC (rev 174046)
@@ -7,7 +7,7 @@
<p>Test for <a href=""
<div>First letter of this sentence should be red.</div>
<script>
-description("getMatchedCSSRules with invalid Psuedo Elements");
+description("getMatchedCSSRules with invalid Pseudo Elements");
var expectedResult1 = "p { color: green; }";
shouldBeEqualToString("getMatchedCSSRules(document.querySelector('p'), '')[0].cssText", expectedResult1)
Modified: trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-expected.txt (174045 => 174046)
--- trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,4 +1,4 @@
-Test for getMatchedCSSRules for Psuedo Elements
+Test for getMatchedCSSRules for Pseudo Elements
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Modified: trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements.html (174045 => 174046)
--- trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements.html 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements.html 2014-09-28 23:18:25 UTC (rev 174046)
@@ -15,7 +15,7 @@
<body>
<div id="div1"></div>
<script>
-description("Test for getMatchedCSSRules for Psuedo Elements");
+description("Test for getMatchedCSSRules for Pseudo Elements");
var element = document.getElementById('div1');
var pseudoRules = window.getMatchedCSSRules(element, "after");
var selectorText = "#div1::after";
Modified: trunk/LayoutTests/fast/selectors/159.html (174045 => 174046)
--- trunk/LayoutTests/fast/selectors/159.html 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/selectors/159.html 2014-09-28 23:18:25 UTC (rev 174046)
@@ -8,7 +8,7 @@
</style>
<link rel="first" href="" title="Groups of selectors">
<link rel="prev" href="" title="Syntax and parsing">
- <link rel="next" href="" title="Syntax and parsing of unknown psuedo-classes">
+ <link rel="next" href="" title="Syntax and parsing of unknown pseudo-classes">
<link rel="last" href="" title="NEGATED :indeterminate with :checked">
<link rel="up" href=""
<link rel="top" href=""
Modified: trunk/LayoutTests/fast/selectors/160.html (174045 => 174046)
--- trunk/LayoutTests/fast/selectors/160.html 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/selectors/160.html 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
- <title>Syntax and parsing of unknown psuedo-classes</title>
+ <title>Syntax and parsing of unknown pseudo-classes</title>
<style type="text/css">
p { background: lime; }
p:subject { background: red; } /* this is not valid CSS, and if UAs
@@ -10,7 +10,7 @@
</style>
<link rel="first" href="" title="Groups of selectors">
<link rel="prev" href="" title="Syntax and parsing of new pseudo-elements">
- <link rel="next" href="" title="Syntax and parsing of unknown psuedo-classes and pseudo-elements">
+ <link rel="next" href="" title="Syntax and parsing of unknown pseudo-classes and pseudo-elements">
<link rel="last" href="" title="NEGATED :indeterminate with :checked">
<link rel="up" href=""
<link rel="top" href=""
Modified: trunk/LayoutTests/fast/selectors/166.html (174045 => 174046)
--- trunk/LayoutTests/fast/selectors/166.html 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/fast/selectors/166.html 2014-09-28 23:18:25 UTC (rev 174046)
@@ -142,8 +142,8 @@
<li><a href="" and parsing</a> (#157)</li>
<li><a href="" and parsing</a> (#158)</li>
<li><a href="" and parsing of new pseudo-elements</a> (#159)</li>
- <li><a href="" and parsing of unknown psuedo-classes</a> (#160)</li>
- <li><a href="" and parsing of unknown psuedo-classes and pseudo-elements</a> (#161)</li>
+ <li><a href="" and parsing of unknown pseudo-classes</a> (#160)</li>
+ <li><a href="" and parsing of unknown pseudo-classes and pseudo-elements</a> (#161)</li>
<li><a href="" ::selection</a> (#162)</li>
<li><a href="" :contains</a> (#163)</li>
<li><a href="" with ::selection</a> (#164)</li>
Modified: trunk/LayoutTests/platform/efl/fast/selectors/166-expected.txt (174045 => 174046)
--- trunk/LayoutTests/platform/efl/fast/selectors/166-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/platform/efl/fast/selectors/166-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1147,14 +1147,14 @@
RenderListMarker at (-17,0) size 7x17: bullet
RenderInline {A} at (0,0) size 299x17 [color=#0000EE]
RenderText {#text} at (0,0) size 299x17
- text run at (0,0) width 299: "Syntax and parsing of unknown psuedo-classes"
+ text run at (0,0) width 299: "Syntax and parsing of unknown pseudo-classes"
RenderText {#text} at (299,0) size 46x17
text run at (299,0) width 46: " (#160)"
RenderListItem {LI} at (40,2250) size 729x18
RenderListMarker at (-17,0) size 7x17: bullet
RenderInline {A} at (0,0) size 435x17 [color=#0000EE]
RenderText {#text} at (0,0) size 435x17
- text run at (0,0) width 435: "Syntax and parsing of unknown psuedo-classes and pseudo-elements"
+ text run at (0,0) width 435: "Syntax and parsing of unknown pseudo-classes and pseudo-elements"
RenderText {#text} at (435,0) size 46x17
text run at (435,0) width 46: " (#161)"
RenderListItem {LI} at (40,2268) size 729x18
Modified: trunk/LayoutTests/platform/gtk/fast/selectors/166-expected.txt (174045 => 174046)
--- trunk/LayoutTests/platform/gtk/fast/selectors/166-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/platform/gtk/fast/selectors/166-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1147,14 +1147,14 @@
RenderListMarker at (-17,0) size 7x17: bullet
RenderInline {A} at (0,0) size 299x17 [color=#0000EE]
RenderText {#text} at (0,0) size 299x17
- text run at (0,0) width 299: "Syntax and parsing of unknown psuedo-classes"
+ text run at (0,0) width 299: "Syntax and parsing of unknown pseudo-classes"
RenderText {#text} at (299,0) size 46x17
text run at (299,0) width 46: " (#160)"
RenderListItem {LI} at (40,2125) size 729x17
RenderListMarker at (-17,0) size 7x17: bullet
RenderInline {A} at (0,0) size 435x17 [color=#0000EE]
RenderText {#text} at (0,0) size 435x17
- text run at (0,0) width 435: "Syntax and parsing of unknown psuedo-classes and pseudo-elements"
+ text run at (0,0) width 435: "Syntax and parsing of unknown pseudo-classes and pseudo-elements"
RenderText {#text} at (435,0) size 46x17
text run at (435,0) width 46: " (#161)"
RenderListItem {LI} at (40,2142) size 729x17
Modified: trunk/LayoutTests/platform/ios-sim/fast/selectors/166-expected.txt (174045 => 174046)
--- trunk/LayoutTests/platform/ios-sim/fast/selectors/166-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/platform/ios-sim/fast/selectors/166-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1146,14 +1146,14 @@
RenderListMarker at (-18,0) size 7x19: bullet
RenderInline {A} at (0,0) size 303x19 [color=#0000EE]
RenderText {#text} at (0,0) size 303x19
- text run at (0,0) width 303: "Syntax and parsing of unknown psuedo-classes"
+ text run at (0,0) width 303: "Syntax and parsing of unknown pseudo-classes"
RenderText {#text} at (302,0) size 48x19
text run at (302,0) width 48: " (#160)"
RenderListItem {LI} at (40,2500) size 744x20
RenderListMarker at (-18,0) size 7x19: bullet
RenderInline {A} at (0,0) size 442x19 [color=#0000EE]
RenderText {#text} at (0,0) size 442x19
- text run at (0,0) width 442: "Syntax and parsing of unknown psuedo-classes and pseudo-elements"
+ text run at (0,0) width 442: "Syntax and parsing of unknown pseudo-classes and pseudo-elements"
RenderText {#text} at (441,0) size 47x19
text run at (441,0) width 47: " (#161)"
RenderListItem {LI} at (40,2520) size 744x20
Modified: trunk/LayoutTests/platform/mac/fast/selectors/166-expected.txt (174045 => 174046)
--- trunk/LayoutTests/platform/mac/fast/selectors/166-expected.txt 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/LayoutTests/platform/mac/fast/selectors/166-expected.txt 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1147,14 +1147,14 @@
RenderListMarker at (-17,0) size 7x18: bullet
RenderInline {A} at (0,0) size 299x18 [color=#0000EE]
RenderText {#text} at (0,0) size 299x18
- text run at (0,0) width 299: "Syntax and parsing of unknown psuedo-classes"
+ text run at (0,0) width 299: "Syntax and parsing of unknown pseudo-classes"
RenderText {#text} at (299,0) size 46x18
text run at (299,0) width 46: " (#160)"
RenderListItem {LI} at (40,2250) size 729x18
RenderListMarker at (-17,0) size 7x18: bullet
RenderInline {A} at (0,0) size 435x18 [color=#0000EE]
RenderText {#text} at (0,0) size 435x18
- text run at (0,0) width 435: "Syntax and parsing of unknown psuedo-classes and pseudo-elements"
+ text run at (0,0) width 435: "Syntax and parsing of unknown pseudo-classes and pseudo-elements"
RenderText {#text} at (435,0) size 46x18
text run at (435,0) width 46: " (#161)"
RenderListItem {LI} at (40,2268) size 729x18
Modified: trunk/PerformanceTests/ChangeLog (174045 => 174046)
--- trunk/PerformanceTests/ChangeLog 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/PerformanceTests/ChangeLog 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,3 +1,12 @@
+2014-09-28 Sungmann Cho <[email protected]>
+
+ Fix some minor typos: psuedo -> pseudo
+ https://bugs.webkit.org/show_bug.cgi?id=137192
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/handlebars/handlebars.js:
+
2014-09-11 Geoffrey Garen <[email protected]>
Some MallocBench refinements
Modified: trunk/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/handlebars/handlebars.js (174045 => 174046)
--- trunk/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/handlebars/handlebars.js 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/handlebars/handlebars.js 2014-09-28 23:18:25 UTC (rev 174046)
@@ -380,7 +380,7 @@
}
// Note: Using env.VM references rather than local var references throughout this section to allow
- // for external users to override these as psuedo-supported APIs.
+ // for external users to override these as pseudo-supported APIs.
var invokePartialWrapper = function(partial, name, context, helpers, partials, data) {
var result = env.VM.invokePartial.apply(this, arguments);
if (result != null) { return result; }
Modified: trunk/Source/WebCore/ChangeLog (174045 => 174046)
--- trunk/Source/WebCore/ChangeLog 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/Source/WebCore/ChangeLog 2014-09-28 23:18:25 UTC (rev 174046)
@@ -1,3 +1,15 @@
+2014-09-28 Sungmann Cho <[email protected]>
+
+ Fix some minor typos: psuedo -> pseudo
+ https://bugs.webkit.org/show_bug.cgi?id=137192
+
+ Reviewed by Alexey Proskuryakov.
+
+ No new tests, no behavior change.
+
+ * css/CSSSelector.cpp:
+ (WebCore::CSSSelector::specificityForOneSelector):
+
2014-09-28 Carlos Garcia Campos <[email protected]>
Unreviewed. Move RenderThemeGtk.h from platform/gtk to rendering.
Modified: trunk/Source/WebCore/css/CSSSelector.cpp (174045 => 174046)
--- trunk/Source/WebCore/css/CSSSelector.cpp 2014-09-28 20:59:28 UTC (rev 174045)
+++ trunk/Source/WebCore/css/CSSSelector.cpp 2014-09-28 23:18:25 UTC (rev 174046)
@@ -99,7 +99,7 @@
case PagePseudoClass:
break;
case PseudoClass:
- // FIXME: PsuedoAny should base the specificity on the sub-selectors.
+ // FIXME: PseudoAny should base the specificity on the sub-selectors.
// See http://lists.w3.org/Archives/Public/www-style/2010Sep/0530.html
if (pseudoClassType() == PseudoClassNot && selectorList())
return selectorList()->first()->specificityForOneSelector();