Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for attrStartStates (0.08 sec)

  1. src/html/template/transition.go

    		// Occurs due to tag ending '>', and valueless attribute.
    		c.state = stateTag
    		return c, i
    	}
    	c.state = stateBeforeValue
    	// Consume the "=".
    	return c, i + 1
    }
    
    var attrStartStates = [...]state{
    	attrNone:       stateAttr,
    	attrScript:     stateJS,
    	attrScriptType: stateAttr,
    	attrStyle:      stateCSS,
    	attrURL:        stateURL,
    	attrSrcset:     stateSrcset,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top