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

Unified Diff: sky/specs/parsing.md

Issue 642903004: script/style tokeniser states (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/specs/parsing.md
diff --git a/sky/specs/parsing.md b/sky/specs/parsing.md
index 2a6a13e135cff87ad1c50dfb8dc062772b26ab9a..1facbdb6f28afffe17d474fd62945f8fcb3ea266 100644
--- a/sky/specs/parsing.md
+++ b/sky/specs/parsing.md
@@ -149,25 +149,191 @@ If the current character is...
### **Script raw data** state ###
-TOOD(ianh): spec this
+If the current character is...
+
+* '```<```': Consume the character and switch to the **script raw
+ data: close 1** state.
+
+* Anything else: Emit the current input character as a character
+ token. Consume the character. Stay in this state.
+
+
+### **Script raw data: close 1** state ###
+
+If the current character is...
+
+* '```/```': Consume the character and switch to the **script raw
+ data: close 2** state.
+
+* Anything else: Emit '```<```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 2** state ###
+
+If the current character is...
+
+* '```s```': Consume the character and switch to the **script raw
+ data: close 3** state.
+
+* Anything else: Emit '```</```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 3** state ###
+
+If the current character is...
+
+* '```c```': Consume the character and switch to the **script raw
+ data: close 4** state.
+
+* Anything else: Emit '```</s```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 4** state ###
+
+If the current character is...
+
+* '```r```': Consume the character and switch to the **script raw
+ data: close 5** state.
+
+* Anything else: Emit '```</sc```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 5** state ###
+
+If the current character is...
+
+* '```i```': Consume the character and switch to the **script raw
+ data: close 6** state.
+
+* Anything else: Emit '```</scr```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 6** state ###
+
+If the current character is...
+
+* '```p```': Consume the character and switch to the **script raw
+ data: close 7** state.
+
+* Anything else: Emit '```</scri```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 7** state ###
+
+If the current character is...
+
+* '```t```': Consume the character and switch to the **script raw
+ data: close 8** state.
+
+* Anything else: Emit '```</scrip```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
+
+
+### **Script raw data: close 8** state ###
+
+If the current character is...
+
+* U+0020, U+000A, '```/```', '```>```': Create an end tag token, and
+ let its tag name be the string '```script```'. Switch to the
+ **before attribute name** state without consuming the character.
+
+* Anything else: Emit '```</script```' character tokens. Consume the
+ character. Switch to the **script raw data** state.
### **Style raw data** state ###
-TOOD(ianh): spec this
+If the current character is...
+* '```<```': Consume the character and switch to the **style raw
+ data: close 1** state.
-### **After tag** state ###
+* Anything else: Emit the current input character as a character
+ token. Consume the character. Stay in this state.
-Emit the tag token.
-If the tag token was a start tag token and the tag name was
-'```script```', then and switch to the **script raw data** state.
+### **Style raw data: close 1** state ###
-If the tag token was a start tag token and the tag name was
-'```style```', then and switch to the **style raw data** state.
+If the current character is...
+
+* '```/```': Consume the character and switch to the **style raw
+ data: close 2** state.
+
+* Anything else: Emit '```<```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
+
+
+### **Style raw data: close 2** state ###
+
+If the current character is...
+
+* '```s```': Consume the character and switch to the **style raw
+ data: close 3** state.
+
+* Anything else: Emit '```</```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
-Otherwise, switch to the **data** state.
+
+### **Style raw data: close 3** state ###
+
+If the current character is...
+
+* '```t```': Consume the character and switch to the **style raw
+ data: close 4** state.
+
+* Anything else: Emit '```</s```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
+
+
+### **Style raw data: close 4** state ###
+
+If the current character is...
+
+* '```y```': Consume the character and switch to the **style raw
+ data: close 5** state.
+
+* Anything else: Emit '```</st```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
+
+
+### **Style raw data: close 5** state ###
+
+If the current character is...
+
+* '```l```': Consume the character and switch to the **style raw
+ data: close 6** state.
+
+* Anything else: Emit '```</sty```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
+
+
+### **Style raw data: close 6** state ###
+
+If the current character is...
+
+* '```e```': Consume the character and switch to the **style raw
+ data: close 7** state.
+
+* Anything else: Emit '```</styl```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
+
+
+### **Style raw data: close 7** state ###
+
+If the current character is...
+
+* U+0020, U+000A, '```/```', '```>```': Create an end tag token, and
+ let its tag name be the string '```style```'. Switch to the
+ **before attribute name** state without consuming the character.
+
+* Anything else: Emit '```</style```' character tokens. Consume the
+ character. Switch to the **style raw data** state.
### **Tag open** state ###
@@ -374,6 +540,19 @@ If the current character is...
this state.
+### **After tag** state ###
+
+Emit the tag token.
+
+If the tag token was a start tag token and the tag name was
+'```script```', then and switch to the **script raw data** state.
+
+If the tag token was a start tag token and the tag name was
+'```style```', then and switch to the **style raw data** state.
+
+Otherwise, switch to the **data** state.
+
+
### **Comment start 1** state ###
If the current character is...
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698