Title: [213677] trunk/Source/_javascript_Core/ChangeLog
Revision
213677
Author
[email protected]
Date
2017-03-09 14:47:01 -0800 (Thu, 09 Mar 2017)

Log Message

Guard Credential Management implementation behind a runtime enabled feature flag
https://bugs.webkit.org/show_bug.cgi?id=169364
<rdar://problem/30957425>

Reviewed by Brent Fulgham.

Add common identifiers for Credential, PasswordCredential, and SiteBoundCredential that are
needed to guard these interfaces behind a runtime enabled feature flag.

* runtime/CommonIdentifiers.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (213676 => 213677)


--- trunk/Source/_javascript_Core/ChangeLog	2017-03-09 22:40:25 UTC (rev 213676)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-03-09 22:47:01 UTC (rev 213677)
@@ -6133,8 +6133,8 @@
         sum of the depths of its nodes, with a node's depth equal to the number
         of frames in its associated call stack. For any stack trace,
 
-            S = { sퟶ, sퟷ, …, s푘 }, with endpoints sퟶ, s푘
-            depth(S) = depth(sퟶ) + depth(sퟷ) + … + depth(s푘)
+            S = { s𝟶, s𝟷, …, s𝑘 }, with endpoints s𝟶, s𝑘
+            depth(S) = depth(s𝟶) + depth(s𝟷) + … + depth(s𝑘)
 
         A stack trace is truncated when it exceeds the maximum depth. Truncation
         occurs on node boundaries, not call frames, consequently the maximum depth
@@ -6141,7 +6141,7 @@
         is more of a target than a guarantee:
 
             d = maximum stack trace depth
-            for all S, depth(S) ≤ d + depth(s푘)
+            for all S, depth(S) ≤ d + depth(s𝑘)
 
         Because nodes can belong to multiple stack traces, it may be necessary
         to clone the tail of a stack trace being truncated to prevent other traces
@@ -6234,8 +6234,8 @@
         sum of the depths of its nodes, with a node's depth equal to the number
         of frames in its associated call stack. For any stack trace,
 
-            S = { sퟶ, sퟷ, …, s푘 }, with endpoints sퟶ, s푘
-            depth(S) = depth(sퟶ) + depth(sퟷ) + … + depth(s푘)
+            S = { s𝟶, s𝟷, …, s𝑘 }, with endpoints s𝟶, s𝑘
+            depth(S) = depth(s𝟶) + depth(s𝟷) + … + depth(s𝑘)
 
         A stack trace is truncated when it exceeds the maximum depth. Truncation
         occurs on node boundaries, not call frames, consequently the maximum depth
@@ -6242,7 +6242,7 @@
         is more of a target than a guarantee:
 
             d = maximum stack trace depth
-            for all S, depth(S) ≤ d + depth(s푘)
+            for all S, depth(S) ≤ d + depth(s𝑘)
 
         Because nodes can belong to multiple stack traces, it may be necessary
         to clone the tail of a stack trace being truncated to prevent other traces
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to