Skip to content

Instantly share code, notes, and snippets.

@yoavweiss
Created April 7, 2014 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoavweiss/10023162 to your computer and use it in GitHub Desktop.
Save yoavweiss/10023162 to your computer and use it in GitHub Desktop.
sizes test cases
TestCase testCases[] = {
24 {"screen", 300},
25 {"(min-width:500px)", 300},
26 {"(min-width:500px) 200px", 200},
27 {"(min-width:500px) 200px, 400px", 200},
28 {"(min-width:5000px) 200px, 400px", 400},
29 {"(blalbadfsdf) 200px, 400px", 400},
30 {0, 0} // Do not remove the terminator line.
31 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment