Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: sky/specs/style.md

Issue 925923004: Specs: rename sky:core to dart:sky (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/specs/script.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/specs/style.md
diff --git a/sky/specs/style.md b/sky/specs/style.md
index cba7bf744b1ebd5be5890ca4d2233a1c6c746c31..592a2293fe8e5284494f604bb88d80be6a2148af 100644
--- a/sky/specs/style.md
+++ b/sky/specs/style.md
@@ -269,7 +269,7 @@ StyleNode
*/
```
-The types marked with * in the list above are not part of sky:core,
+The types marked with * in the list above are not part of dart:sky,
and are only shown here to illustrate what kinds of extensions are
possible and where they would fit.
@@ -454,7 +454,7 @@ PropertyHandle registerProperty(PropertySettings propertySettings);
// registers a property with the given settings, and returns an integer >= 0
// that can be used to refer to this property
-// sky:core exports a bunch of style grammars so that people can extend them
+// dart:sky exports a bunch of style grammars so that people can extend them
attribute StyleGrammar PositiveLengthOrInfinityStyleGrammar; // resolves to LengthStyleValue
attribute StyleGrammar PositiveLengthOrAutoStyleGrammar; // resolves to LengthStyleValue or IdentifierStyleValue (with value 'auto')
attribute StyleGrammar PositiveLengthStyleGrammar; // resolves to LengthStyleValue
@@ -564,7 +564,7 @@ class Rule {
Each frame, at some defined point relative to requestAnimationFrame(),
if a Rule has started applying, or a Rule stopped applying, to an
-element, sky:core calls thatElement.style.clearFrameStyles() and then,
+element, dart:sky calls thatElement.style.clearFrameStyles() and then,
for each Rule that now applies, calls
thatElement.style.addFrameStyles() with the relevant StyleDeclaration
and pseudoElement from each such Rule.
@@ -760,7 +760,7 @@ the Node inherited everything inheritable from its parent.
Layout
------
-sky:core registers 'display' as follows:
+dart:sky registers 'display' as follows:
```javascript
{
@@ -778,7 +778,7 @@ The following API is then used to add new layout manager types to 'display':
void registerLayoutManager(String displayValue, LayoutManagerConstructor? layoutManager);
```
-sky:core by default registers:
+dart:sky by default registers:
- 'block': sky.BlockLayoutManager
- 'paragraph': sky.ParagraphLayoutManager
« no previous file with comments | « sky/specs/script.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698