Title: [210067] tags/Safari-604.1.1

Diff

Modified: tags/Safari-604.1.1/LayoutTests/ChangeLog (210066 => 210067)


--- tags/Safari-604.1.1/LayoutTests/ChangeLog	2016-12-21 19:02:35 UTC (rev 210066)
+++ tags/Safari-604.1.1/LayoutTests/ChangeLog	2016-12-21 19:05:00 UTC (rev 210067)
@@ -1,3 +1,7 @@
+2016-12-21  Babak Shafiei  <[email protected]>
+
+        Roll out r209510.
+
 2016-12-20  Myles C. Maxfield  <[email protected]>
 
         Skia lighter wght variation looks bolder than regular

Modified: tags/Safari-604.1.1/LayoutTests/http/tests/xmlhttprequest/cors-non-standard-safelisted-headers-should-trigger-preflight.html (210066 => 210067)


--- tags/Safari-604.1.1/LayoutTests/http/tests/xmlhttprequest/cors-non-standard-safelisted-headers-should-trigger-preflight.html	2016-12-21 19:02:35 UTC (rev 210066)
+++ tags/Safari-604.1.1/LayoutTests/http/tests/xmlhttprequest/cors-non-standard-safelisted-headers-should-trigger-preflight.html	2016-12-21 19:05:00 UTC (rev 210067)
@@ -34,12 +34,12 @@
     }
 
     var abnormalSimpleCorsHeaderValue = "() { :;};"
-    var allAllowedNonAlphanumericCharactersForAcceptHeader = " *,./;="
-    var allAllowedNonAlphanumericCharactersForAcceptAndContentLanguageHeader = " *,-.;="
+    var allAllowedNonAlphanumericCharactersForAcceptHeader = " *./;="
+    var allAllowedNonAlphanumericCharactersForAcceptAndContentLanguageHeader = " *-.;="
     var testCases = [
         // Positive test cases with normal headers
         {
-            headersToAdd: [{ name : "Accept", value: "application/json,text/*,*/*" }],
+            headersToAdd: [{ name : "Accept", value: "text/*" }],
             explicitlyAllowHeaders: false,
             shouldCausePreflight: false,
             description: "Accept header with normal value SHOULD NOT cause a preflight"
@@ -51,7 +51,7 @@
             description: "Accept header value with all allowed non-alphanumeric characters SHOULD NOT cause a preflight"
         }
         ,{
-            headersToAdd: [{ name : "Accept-Language", value: "en-US,en;q=0.8" }],
+            headersToAdd: [{ name : "Accept-Language", value: "en" }],
             explicitlyAllowHeaders: false,
             shouldCausePreflight: false,
             description: "Accept-Language header with normal value SHOULD NOT cause a preflight"

Modified: tags/Safari-604.1.1/Source/WebCore/ChangeLog (210066 => 210067)


--- tags/Safari-604.1.1/Source/WebCore/ChangeLog	2016-12-21 19:02:35 UTC (rev 210066)
+++ tags/Safari-604.1.1/Source/WebCore/ChangeLog	2016-12-21 19:05:00 UTC (rev 210067)
@@ -1,3 +1,7 @@
+2016-12-21  Babak Shafiei  <[email protected]>
+
+        Roll out r209510.
+
 2016-12-20  Myles C. Maxfield  <[email protected]>
 
         Skia lighter wght variation looks bolder than regular

Modified: tags/Safari-604.1.1/Source/WebCore/platform/network/HTTPParsers.cpp (210066 => 210067)


--- tags/Safari-604.1.1/Source/WebCore/platform/network/HTTPParsers.cpp	2016-12-21 19:02:35 UTC (rev 210066)
+++ tags/Safari-604.1.1/Source/WebCore/platform/network/HTTPParsers.cpp	2016-12-21 19:05:00 UTC (rev 210067)
@@ -132,7 +132,7 @@
 {
     for (unsigned i = 0; i < value.length(); ++i) {
         UChar c = value[i];
-        if (isASCIIAlphanumeric(c) || c == ' ' || c == '*' || c == ',' || c == '.' || c == '/' || c == ';' || c == '=')
+        if (isASCIIAlphanumeric(c) || c == ' ' || c == '*' || c == '.' || c == '/' || c == ';' || c == '=')
             continue;
         return false;
     }
@@ -145,7 +145,7 @@
 {
     for (unsigned i = 0; i < value.length(); ++i) {
         UChar c = value[i];
-        if (isASCIIAlphanumeric(c) || c == ' ' || c == '*' || c == ',' || c == '-' || c == '.' || c == ';' || c == '=')
+        if (isASCIIAlphanumeric(c) || c == ' ' || c == '*' || c == '-' || c == '.' || c == ';' || c == '=')
             continue;
         return false;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to