├── .gitignore ├── ReadMe.md ├── descriptors.txt └── gold-standard-status.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | You're probably looking for the [Gold Standard wiki](https://github.com/webcomponents/gold-standard/wiki), which contains the actual Gold Standard checklist. The top-level repo you're looking at now exists in GitHub in order to: a) enable the wiki, and b) provide a place to stash sample code referenced by the checklist. 2 | -------------------------------------------------------------------------------- /descriptors.txt: -------------------------------------------------------------------------------- 1 | Expressed Dependencies 2 | Load Order Independence 3 | Relative Paths 4 | Host Independence 5 | Detached Instantiation 6 | Detachment 7 | Reattachment 8 | Local effects only 9 | Focusable 10 | Focus Order 11 | Aggregate Focus 12 | Focus Visible 13 | Keyboard Support 14 | Keyboard Locality 15 | Labels 16 | ARIA Role 17 | UI States 18 | Sufficient Contrast 19 | Redundant Color 20 | High Contrast 21 | Plain Tag 22 | Children Visible 23 | Content Reprojection 24 | Content Changes 25 | Child Independence 26 | Auxiliary Content 27 | Back-End Independence 28 | Presentable 29 | Generic Styling 30 | Informational Animation 31 | Default Font 32 | Default Colors 33 | Restrained Color 34 | Size to Content 35 | Default Size 36 | Stretch to Fit 37 | Automatic Positioning 38 | Child Positioning 39 | Style Recalc 40 | Size Recalc 41 | Responsive 42 | Member Order Independence 43 | Member Combinations 44 | Required Properties 45 | Exposed Methods 46 | Exposed Events 47 | Documented API 48 | Computational Performance 49 | Network Performance 50 | Render Performance 51 | Vector Graphics 52 | Progress Feedback 53 | Localizable Strings 54 | Date+Time Format 55 | Currency Format 56 | Right-to-Left 57 | Appropriate Base Class 58 | Composition 59 | Subclassable 60 | Overridable Methods 61 | Purpose Statement 62 | Code Style Guide 63 | Open License 64 | Clean Console 65 | -------------------------------------------------------------------------------- /gold-standard-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "Expressed Dependencies": false, 3 | "Load Order Independence": false, 4 | "Relative Paths": false, 5 | "Host Independence": false, 6 | "Detached Instantiation": false, 7 | "Detachment": false, 8 | "Reattachment": false, 9 | "Localeffectsonly": false, 10 | "Focusable": false, 11 | "Focus Order": false, 12 | "Aggregate Focus": false, 13 | "Focus Visible": false, 14 | "Keyboard Support": false, 15 | "Keyboard Locality": false, 16 | "Labels": false, 17 | "ARIA Role": false, 18 | "UI States": false, 19 | "Sufficient Contrast": false, 20 | "Redundant Color": false, 21 | "High Contrast": false, 22 | "Plain Tag": false, 23 | "Children Visible": false, 24 | "Content Reprojection": false, 25 | "Content Changes": false, 26 | "Child Independence": false, 27 | "Auxiliary Content": false, 28 | "Back- End Independence": false, 29 | "Presentable": false, 30 | "Generic Styling": false, 31 | "Informational Animation": false, 32 | "Default Font": false, 33 | "Default Colors": false, 34 | "Restrained Color": false, 35 | "Sizeto Content": false, 36 | "Default Size": false, 37 | "Stretchto Fit": false, 38 | "Automatic Positioning": false, 39 | "Child Positioning": false, 40 | "Style Recalc": false, 41 | "Size Recalc": false, 42 | "Responsive": false, 43 | "Member Order Independence": false, 44 | "Member Combinations": false, 45 | "Required Properties": false, 46 | "Exposed Methods": false, 47 | "Exposed Events": false, 48 | "Documented API": false, 49 | "Computational Performance": false, 50 | "Network Performance": false, 51 | "Render Performance": false, 52 | "Vector Graphics": false, 53 | "Progress Feedback": false, 54 | "Localizable Strings": false, 55 | "Date+ Time Format": false, 56 | "Currency Format": false, 57 | "Right-to- Left": false, 58 | "Appropriate Base Class": false, 59 | "Composition": false, 60 | "Subclassable": false, 61 | "Overridable Methods": false, 62 | "Purpose Statement": false, 63 | "Code Style Guide": false, 64 | "Open License": false, 65 | "Clean Console": false 66 | } 67 | --------------------------------------------------------------------------------