OLD | NEW |
1 // Determines whether certain gpu-related features are blacklisted or not. | 1 // Determines whether certain gpu-related features are blacklisted or not. |
2 // A valid software_rendering_list.json file are in the format of | 2 // A valid software_rendering_list.json file are in the format of |
3 // { | 3 // { |
4 // "version": "x.y", | 4 // "version": "x.y", |
5 // "entries": [ | 5 // "entries": [ |
6 // { // entry 1 | 6 // { // entry 1 |
7 // }, | 7 // }, |
8 // ... | 8 // ... |
9 // { // entry n | 9 // { // entry n |
10 // } | 10 // } |
(...skipping 22 matching lines...) Expand all Loading... |
33 // This field is mandatory. | 33 // This field is mandatory. |
34 // 12. "description" has the description of the entry. | 34 // 12. "description" has the description of the entry. |
35 // 13. "webkit_bugs" is an array of associated webkit bug numbers. | 35 // 13. "webkit_bugs" is an array of associated webkit bug numbers. |
36 // 14. "cr_bugs" is an array of associated webkit bug numbers. | 36 // 14. "cr_bugs" is an array of associated webkit bug numbers. |
37 // 15. "browser_version" is a VERSION structure (defined below). If this | 37 // 15. "browser_version" is a VERSION structure (defined below). If this |
38 // condition is not satisfied, the entry will be ignored. If it is not | 38 // condition is not satisfied, the entry will be ignored. If it is not |
39 // present, then the entry applies to all versions of the browser. | 39 // present, then the entry applies to all versions of the browser. |
40 // 16. "browser_channels" is a list of browser channel strings, valid values | 40 // 16. "browser_channels" is a list of browser channel strings, valid values |
41 // include "stable", "beta", "dev", and "canary". If the browser_channels | 41 // include "stable", "beta", "dev", and "canary". If the browser_channels |
42 // list is not present, the entry matches all channels. | 42 // list is not present, the entry matches all channels. |
| 43 // 17. "disabled" is a boolean. If it is present, the entry will be skipped. |
| 44 // This can not be used in exceptions. |
43 // | 45 // |
44 // VERSION includes "op" "number", and "number2". "op" can be any of the | 46 // VERSION includes "op" "number", and "number2". "op" can be any of the |
45 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
46 // only used if "op" is "between". "number" is used for all "op" values except | 48 // only used if "op" is "between". "number" is used for all "op" values except |
47 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. | 49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. |
48 // | 50 // |
49 // STRING includes "op" and "value". "op" can be any of the following values: | 51 // STRING includes "op" and "value". "op" can be any of the following values: |
50 // "contains", "beginwith", "endwith", "=". "value" is a string. | 52 // "contains", "beginwith", "endwith", "=". "value" is a string. |
51 | 53 |
52 { | 54 { |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 "driver_version": { | 402 "driver_version": { |
401 "op": "<=", | 403 "op": "<=", |
402 "number": "8.15.10.2202" | 404 "number": "8.15.10.2202" |
403 }, | 405 }, |
404 "blacklist": [ | 406 "blacklist": [ |
405 "all" | 407 "all" |
406 ] | 408 ] |
407 } | 409 } |
408 ] | 410 ] |
409 } | 411 } |
OLD | NEW |