summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_media_queries.html
blob: 441fc1105a1483a4e29b90ef48da997d795aaa94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=156716
-->
<head>
  <title>Test for Bug 156716</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="chrome/chrome-only-media-queries.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="run()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=156716">Mozilla Bug 156716</a>
<iframe id="subdoc" src="media_queries_iframe.html"></iframe>
<div id="content" style="display: none">

</div>
<pre id="test">
<script class="testbody" type="application/javascript">

/** Test for Bug 156716 **/

// Note that many other tests are in test_acid3_test46.html .

SimpleTest.waitForExplicitFinish();
SimpleTest.requestLongerTimeout(2);

var iframe;

function getScreenPixelsPerCSSPixel() {
  return window.devicePixelRatio;
}

function run() {
  iframe = document.getElementById("subdoc");
  var subdoc = iframe.contentDocument;
  var subwin = iframe.contentWindow;
  var style = subdoc.getElementById("style");
  var iframe_style = iframe.style;
  var body_cs = subdoc.defaultView.getComputedStyle(subdoc.body);

  function query_applies(q) {
    style.setAttribute("media", q);
    return body_cs.getPropertyValue("text-decoration-line") == "underline";
  }

  function should_apply(q) {
    ok(query_applies(q), q + " should apply");
    test_serialization(q, true, true);
  }

  function should_not_apply(q) {
    ok(!query_applies(q), q + " should not apply");
    test_serialization(q, true, false);
  }

  /* for queries that are parseable standalone but not within CSS */
  function should_apply_unbalanced(q) {
    ok(query_applies(q), q + " should apply");
  }

  /* for queries that are parseable standalone but not within CSS */
  function should_not_apply_unbalanced(q) {
    ok(!query_applies(q), q + " should not apply");
  }

  /*
   * Functions to test whether a query is parseable at all.  (Should not
   * be used for parse errors within expressions.)
   */
  var parse_test_style_element = document.createElement("style");
  parse_test_style_element.type = "text/css";
  parse_test_style_element.disabled = true; // for performance, hopefully
  var parse_test_style_text = document.createTextNode("");
  parse_test_style_element.appendChild(parse_test_style_text);
  document.getElementsByTagName("head")[0]
    .appendChild(parse_test_style_element);

  function query_is_parseable(q) {
    parse_test_style_text.data = "@media screen, " + q + " {}";
    var sheet = parse_test_style_element.sheet; // XXX yikes, not live!
    if (sheet.cssRules.length == 1 &&
        sheet.cssRules[0].type == CSSRule.MEDIA_RULE)
      return sheet.cssRules[0].media.mediaText != "screen, not all";
    ok(false, "unexpected result testing whether query " + q +
              " is parseable");
    return true; // doesn't matter, we already failed
  }

  function query_should_be_parseable(q) {
    ok(query_is_parseable(q), "query " + q + " should be parseable");
    test_serialization(q, false, false);
  }

  function query_should_not_be_parseable(q) {
    ok(!query_is_parseable(q), "query " + q + " should not be parseable");
  }

  function expression_should_be_known(e) {
    should_apply(`(${e}) or (not (${e}))`);
  }

  function expression_should_not_be_known(e) {
    should_not_apply(`(${e}) or (not (${e}))`);
  }

  // Helper to share code between -moz & -webkit device-pixel-ratio versions:
  function test_device_pixel_ratio(equal_name, min_name, max_name) {
    var real_dpr = 1.0 * getScreenPixelsPerCSSPixel();
    var high_dpr = 1.1 * getScreenPixelsPerCSSPixel();
    var low_dpr = 0.9 * getScreenPixelsPerCSSPixel();
    should_apply("all and (" + max_name + ": " + real_dpr + ")");
    should_apply("all and (" + min_name + ": " + real_dpr + ")");
    should_not_apply("not all and (" + max_name + ": " + real_dpr + ")");
    should_not_apply("not all and (" + min_name + ": " + real_dpr + ")");
    should_apply("all and (" + min_name + ": " + low_dpr + ")");
    should_apply("all and (" + max_name + ": " + high_dpr + ")");
    should_not_apply("all and (" + max_name + ": " + low_dpr + ")");
    should_not_apply("all and (" + min_name + ": " + high_dpr + ")");
    should_apply("not all and (" + max_name + ": " + low_dpr + ")");
    should_apply("not all and (" + min_name + ": " + high_dpr + ")");
    should_apply("(" + equal_name + ": " + real_dpr + ")");
    should_not_apply("(" + equal_name + ": " + high_dpr + ")");
    should_not_apply("(" + equal_name + ": " + low_dpr + ")");
    should_apply("(" + equal_name + ")");
    expression_should_not_be_known(min_name);
    expression_should_not_be_known(max_name);
  }

  function test_serialization(q, test_application, expected_to_apply) {
    style.setAttribute("media", q);
    var ser1 = style.sheet.media.mediaText;
    isnot(ser1, "", "serialization of '" + q + "' should not be empty");
    style.setAttribute("media", ser1);
    var ser2 = style.sheet.media.mediaText;
    is(ser2, ser1, "parse+serialize of '" + q + "' should be idempotent");
    if (test_application) {
      let applies = body_cs.getPropertyValue("text-decoration-line") ==
                    "underline";
      is(applies, expected_to_apply,
         "Media query '" + q + "' should " + (expected_to_apply ? "" : "NOT ") +
         "apply after serialize + reparse");
    }

    // Test cloning
    var sheet = "@media " + q + " { body { text-decoration: underline } }"
    var sheeturl = "data:text/css," + escape(sheet);
    var link = "<link rel='stylesheet' href='" + sheeturl + "'>";
    var htmldoc = "<!DOCTYPE HTML>" + link + link  + "<body>";
    post_clone_test(htmldoc, function() {
      var clonedoc = iframe.contentDocument;
      var clonewin = iframe.contentWindow;
      var links = clonedoc.getElementsByTagName("link");
      // cause a clone
      var clonedsheet = links[1].sheet;
      clonedsheet.insertRule("#nonexistent { color: purple}", 1);
      // remove the uncloned sheet
      links[0].remove();

      var ser3 = clonedsheet.cssRules[0].media.mediaText;
      is(ser3, ser1, "cloning query '" + q + "' should not change " +
                     "serialization");
      if (test_application) {
        let applies = clonewin.getComputedStyle(clonedoc.body).
                        textDecorationLine == "underline";
        is(applies, expected_to_apply,
           "Media query '" + q + "' should " + (expected_to_apply ? "" : "NOT ") +
           "apply after cloning");
      }
    });
  }

  // The no-type syntax doesn't mix with the not and only keywords.
  expression_should_be_known("(orientation)");
  expression_should_be_known("not (orientation)");
  query_should_not_be_parseable("only (orientation)");
  query_should_be_parseable("all and (orientation)");
  query_should_be_parseable("not all and (orientation)");
  query_should_be_parseable("only all and (orientation)");

  query_should_not_be_parseable("not not (orientation)");
  expression_should_be_known("(orientation) and (orientation)");
  expression_should_be_known("(orientation) or (orientation)");
  expression_should_be_known("(orientation) or ((orientation) and ((orientation) or (orientation) or (not (orientation))))");

  query_should_not_be_parseable("all and (orientation) or (orientation)");
  query_should_be_parseable("all and (orientation) and (orientation)");

  query_should_not_be_parseable("(orientation) and (orientation) or (orientation)");
  query_should_not_be_parseable("(orientation) and not (orientation)");

  query_should_be_parseable("(-moz-device-orientation)");
  query_should_be_parseable("not (-moz-device-orientation)");
  query_should_not_be_parseable("only (-moz-device-orientation)");
  query_should_be_parseable("all and (-moz-device-orientation)");
  query_should_be_parseable("not all and (-moz-device-orientation)");
  query_should_be_parseable("only all and (-moz-device-orientation)");

  // Test that the 'not', 'only', 'and', and 'or' keywords are not
  // allowed as media types.
  query_should_not_be_parseable("not");
  query_should_not_be_parseable("and");
  query_should_not_be_parseable("or");
  query_should_not_be_parseable("only");
  query_should_be_parseable("unknowntype");
  query_should_not_be_parseable("not not");
  query_should_not_be_parseable("not and");
  query_should_not_be_parseable("not or");
  query_should_not_be_parseable("not only");
  query_should_be_parseable("not unknowntype");
  query_should_not_be_parseable("only not");
  query_should_not_be_parseable("only and");
  query_should_not_be_parseable("only or");
  query_should_not_be_parseable("only only");
  query_should_be_parseable("only unknowntype");
  query_should_not_be_parseable("not and (width)");
  query_should_not_be_parseable("and and (width)");
  query_should_not_be_parseable("or and (width)");
  query_should_not_be_parseable("only and (width)");
  query_should_be_parseable("unknowntype and (width)");
  query_should_not_be_parseable("not not and (width)");
  query_should_not_be_parseable("not and and (width)");
  query_should_not_be_parseable("not or and (width)");
  query_should_not_be_parseable("not only and (width)");
  query_should_be_parseable("not unknowntype and (width)");
  query_should_not_be_parseable("only not and (width)");
  query_should_not_be_parseable("only and and (width)");
  query_should_not_be_parseable("only or and (width)");
  query_should_not_be_parseable("only only and (width)");
  query_should_be_parseable("only unknowntype and (width)");

  var features = [ "width", "height", "device-width", "device-height" ];
  var separators = [ ":", ">", ">=", "=", "<=", "<" ];

  var feature;
  var i;
  for (i in features) {
    feature = features[i];
    expression_should_be_known(feature);
    expression_should_not_be_known("min-" + feature);
    expression_should_not_be_known("max-" + feature);
    for (let separator of separators) {
      expression_should_be_known(feature + " " + separator + " 0");
      expression_should_be_known(feature + " " + separator + " 0px");
      expression_should_be_known(feature + " " + separator + " 0em");
      expression_should_be_known(feature + " " + separator + " -0");
      expression_should_be_known(feature + " " + separator + " -0cm");
      expression_should_be_known(feature + " " + separator + " 1px");
      expression_should_be_known(feature + " " + separator + " 0.001mm");
      expression_should_be_known(feature + " " + separator + " 100000px");
      expression_should_be_known(feature + " " + separator + " -1px");
      if (separator == ":") {
        expression_should_be_known("min-" + feature + " " + separator + " -0");
        expression_should_be_known("max-" + feature + " " + separator + " -0");
        expression_should_be_known("min-" + feature + " " + separator + " -1px");
        expression_should_be_known("max-" + feature + " " + separator + " -1px");
        expression_should_be_known(feature + " " + separator + " -0.00001mm");
        expression_should_be_known(feature + " " + separator + " -100000em");
      } else {
        expression_should_not_be_known("min-" + feature + " " + separator + " -0");
        expression_should_not_be_known("max-" + feature + " " + separator + " -0");
        expression_should_not_be_known("min-" + feature + " " + separator + " -1px");
        expression_should_not_be_known("max-" + feature + " " + separator + " -1px");
        let multi_range = "0px " + separator + " " + feature + " " + separator + " 100000px"
        if (separator == "=") {
          expression_should_not_be_known(multi_range);
        } else {
          expression_should_be_known(multi_range);
        }
      }
      if (separator == ">=") {
        expression_should_not_be_known(feature + " > = 0px");
      } else if (separator == "<=") {
        expression_should_not_be_known(feature + " < = 0px");
      }
    }
  }

  var mediatypes = ["browser", "minimal-ui", "standalone", "fullscreen"];

  mediatypes.forEach(function(type) {
    expression_should_be_known("display-mode: " + type);
  });

  expression_should_not_be_known("display-mode: invalid")

  var content_div = document.getElementById("content");
  content_div.style.font = "initial";
  var em_size =
    getComputedStyle(content_div, "").fontSize.match(/^(\d+)px$/)[1];

  // in this test, assume the common underlying implementation is correct
  var width_val = 117; // pick two not-too-round numbers
  var height_val = 76;
  change_state(function() {
    iframe_style.width = width_val + "px";
    iframe_style.height = height_val + "px";
  });
  var device_width = window.screen.width;
  var device_height = window.screen.height;
  features = {
    "width": width_val,
    "height": height_val,
    "device-width": device_width,
    "device-height": device_height
  };
  for (feature in features) {
    var value = features[feature];
    should_apply("all and (" + feature + ": " + value + "px)");
    should_apply("all and (" + feature + " = " + value + "px)");
    should_not_apply("all and (" + feature + ": " + (value + 1) + "px)");
    should_not_apply("all and (" + feature + ": " + (value - 1) + "px)");
    should_not_apply("all and (" + feature + " = " + (value + 1) + "px)");
    should_not_apply("all and (" + feature + " = " + (value - 1) + "px)");

    should_apply("all and (min-" + feature + ": " + value + "px)");
    should_not_apply("all and (min-" + feature + ": " + (value + 1) + "px)");
    should_apply("all and (min-" + feature + ": " + (value - 1) + "px)");
    should_apply("all and (max-" + feature + ": " + value + "px)");
    should_apply("all and (max-" + feature + ": " + (value + 1) + "px)");
    should_not_apply("all and (max-" + feature + ": " + (value - 1) + "px)");
    should_not_apply("all and (min-" + feature + ": " +
                     (Math.ceil(value/em_size) + 1) + "em)");
    should_apply("all and (min-" + feature + ": " +
                 (Math.floor(value/em_size) - 1) + "em)");
    should_apply("all and (max-" + feature + ": " +
                 (Math.ceil(value/em_size) + 1) + "em)");
    should_not_apply("all and (max-" + feature + ": " +
                     (Math.floor(value/em_size) - 1) + "em)");
    should_not_apply("all and (min-" + feature + ": " +
                     (Math.ceil(value/em_size) + 1) + "rem)");
    should_apply("all and (min-" + feature + ": " +
                 (Math.floor(value/em_size) - 1) + "rem)");
    should_apply("all and (max-" + feature + ": " +
                 (Math.ceil(value/em_size) + 1) + "rem)");
    should_not_apply("all and (max-" + feature + ": " +
                     (Math.floor(value/em_size) - 1) + "rem)");

    should_apply("(" + feature + " <= " + value + "px)");
    should_apply("(" + feature + " >= " + value + "px)");

    should_apply("(0px < " + feature + " <= " + value + "px)");
    should_apply("(" + value + "px >= " + feature + " > 0px)");

    should_not_apply("(0px < " + feature + " < " + value + "px)");
    should_not_apply("(" + value + "px > " + feature + " > 0px)");

    should_not_apply("(" + feature + " < " + value + "px)");
    should_not_apply("(" + feature + " > " + value + "px)");

    should_apply("(" + feature + " < " + (value + 1) + "px)");
    should_apply("(" + feature + " <= " + (value + 1) + "px)");
    should_not_apply("(" + feature + " > " + (value + 1) + "px)");
    should_not_apply("(" + feature + " >= " + (value + 1) + "px)");

    should_apply("(" + feature + " > " + (value - 1) + "px)");
    should_apply("(" + feature + " >= " + (value - 1) + "px)");
    should_not_apply("(" + feature + " < " + (value - 1) + "px)");
    should_not_apply("(" + feature + " <= " + (value - 1) + "px)");
  }

  change_state(function() {
    iframe_style.width = "0";
  });
  should_apply("all and (height)");
  should_not_apply("all and (width)");
  change_state(function() {
    iframe_style.height = "0";
  });
  should_not_apply("all and (height)");
  should_not_apply("all and (width)");
  should_apply("all and (device-height)");
  should_apply("all and (device-width)");
  change_state(function() {
    iframe_style.width = width_val + "px";
  });
  should_not_apply("all and (height)");
  should_apply("all and (width)");
  change_state(function() {
    iframe_style.height = height_val + "px";
  });
  should_apply("all and (height)");
  should_apply("all and (width)");

  // ratio that reduces to 59/40
  change_state(function() {
    iframe_style.width = "236px";
    iframe_style.height = "160px";
  });
  expression_should_be_known("orientation");
  expression_should_be_known("orientation: portrait");
  expression_should_be_known("orientation: landscape");
  expression_should_not_be_known("min-orientation");
  expression_should_not_be_known("min-orientation: portrait");
  expression_should_not_be_known("min-orientation: landscape");
  expression_should_not_be_known("max-orientation");
  expression_should_not_be_known("max-orientation: portrait");
  expression_should_not_be_known("max-orientation: landscape");
  should_apply("(orientation)");
  should_apply("(orientation: landscape)");
  should_not_apply("(orientation: portrait)");
  should_apply("not all and (orientation: portrait)");
  // ratio that reduces to 59/80
  change_state(function() {
    iframe_style.height = "320px";
  });
  should_apply("(orientation)");
  should_not_apply("(orientation: landscape)");
  should_apply("not all and (orientation: landscape)");
  should_apply("(orientation: portrait)");

  expression_should_be_known("-moz-device-orientation");
  expression_should_be_known("-moz-device-orientation: portrait");
  expression_should_be_known("-moz-device-orientation: landscape");
  expression_should_not_be_known("min--moz-device-orientation");
  expression_should_not_be_known("min--moz-device-orientation: portrait");
  expression_should_not_be_known("min--moz-device-orientation: landscape");
  expression_should_not_be_known("max--moz-device-orientation");
  expression_should_not_be_known("max--moz-device-orientation: portrait");
  expression_should_not_be_known("max--moz-device-orientation: landscape");

  // determine the actual configuration of the screen and test against it
  var device_orientation = (device_width > device_height) ? "landscape" : "portrait";
  var not_device_orientation = (device_orientation == "landscape") ? "portrait" : "landscape";
  should_apply("(-moz-device-orientation)");
  should_apply("(-moz-device-orientation: " + device_orientation + ")");
  should_not_apply("(-moz-device-orientation: " + not_device_orientation + ")");
  should_apply("not all and (-moz-device-orientation: " + not_device_orientation + ")");

  should_apply("(aspect-ratio: 59/80)");
  should_not_apply("(aspect-ratio: 58/80)");
  should_not_apply("(aspect-ratio: 59/81)");
  should_not_apply("(aspect-ratio: 60/80)");
  should_not_apply("(aspect-ratio: 59/79)");
  should_apply("(aspect-ratio: 177/240)");
  should_apply("(aspect-ratio: 413/560)");
  should_apply("(aspect-ratio: 5900/8000)");
  should_not_apply("(aspect-ratio: 5901/8000)");
  should_not_apply("(aspect-ratio: 5899/8000)");
  should_not_apply("(aspect-ratio: 5900/8001)");
  should_not_apply("(aspect-ratio: 5900/7999)");
  should_apply("(aspect-ratio)");

  // Test "unreasonable", but still valid aspect ratios, such as aspect ratios with negative numbers,
  // and zeros, and with numbers near 2^32 and 2^64 (to check overflow).
  should_not_apply("(aspect-ratio: 0/1)");
  should_not_apply("(aspect-ratio: 1/0)");
  should_not_apply("(aspect-ratio: -1/1)");
  should_not_apply("(aspect-ratio: 1/-1)");
  should_not_apply("(aspect-ratio: -1/-1)");
  should_not_apply("(aspect-ratio: -59/-80)");
  should_not_apply("(aspect-ratio: 4294967295/4294967295)");
  should_not_apply("(aspect-ratio: 4294967297/4294967297)");
  should_not_apply("(aspect-ratio: 18446744073709560000/18446744073709560000)");

  // Test min and max aspect ratios.
  should_apply("(min-aspect-ratio: 59/80)");
  should_apply("(min-aspect-ratio: 58/80)");
  should_apply("(min-aspect-ratio: 59/81)");
  should_not_apply("(min-aspect-ratio: 60/80)");
  should_not_apply("(min-aspect-ratio: 59/79)");
  expression_should_not_be_known("min-aspect-ratio");

  should_apply("(max-aspect-ratio: 59/80)");
  should_not_apply("(max-aspect-ratio: 58/80)");
  should_not_apply("(max-aspect-ratio: 59/81)");
  should_apply("(max-aspect-ratio: 60/80)");
  should_apply("(max-aspect-ratio: 59/79)");
  expression_should_not_be_known("max-aspect-ratio");

  var real_dar = device_width + "/" + device_height;
  var high_dar_1 = (device_width + 1) + "/" + device_height;
  var high_dar_2 = device_width + "/" + (device_height - 1);
  var low_dar_1 = (device_width - 1) + "/" + device_height;
  var low_dar_2 = device_width + "/" + (device_height + 1);
  should_apply("(device-aspect-ratio: " + real_dar + ")");
  should_apply("not all and (device-aspect-ratio: " + high_dar_1 + ")");
  should_not_apply("all and (device-aspect-ratio: " + high_dar_2 + ")");
  should_not_apply("all and (device-aspect-ratio: " + low_dar_1 + ")");
  should_apply("not all and (device-aspect-ratio: " + low_dar_2 + ")");
  should_apply("(device-aspect-ratio)");

  should_apply("(min-device-aspect-ratio: " + real_dar + ")");
  should_not_apply("all and (min-device-aspect-ratio: " + high_dar_1 + ")");
  should_apply("not all and (min-device-aspect-ratio: " + high_dar_2 + ")");
  should_not_apply("not all and (min-device-aspect-ratio: " + low_dar_1 + ")");
  should_apply("all and (min-device-aspect-ratio: " + low_dar_2 + ")");
  expression_should_not_be_known("min-device-aspect-ratio");

  should_apply("all and (max-device-aspect-ratio: " + real_dar + ")");
  should_apply("(max-device-aspect-ratio: " + high_dar_1 + ")");
  should_apply("(max-device-aspect-ratio: " + high_dar_2 + ")");
  should_not_apply("all and (max-device-aspect-ratio: " + low_dar_1 + ")");
  should_apply("not all and (max-device-aspect-ratio: " + low_dar_2 + ")");
  expression_should_not_be_known("max-device-aspect-ratio");

  // Tests for -moz- & -webkit versions of "device-pixel-ratio"
  // (Note that the vendor prefixes go in different places.)
  test_device_pixel_ratio("-moz-device-pixel-ratio",
                          "min--moz-device-pixel-ratio",
                          "max--moz-device-pixel-ratio");
  test_device_pixel_ratio("-webkit-device-pixel-ratio",
                          "-webkit-min-device-pixel-ratio",
                          "-webkit-max-device-pixel-ratio");

  // Make sure that we don't accidentally start accepting *unprefixed*
  // "device-pixel-ratio" expressions:
  expression_should_be_known("-webkit-device-pixel-ratio: 1.0");
  expression_should_not_be_known("device-pixel-ratio: 1.0");
  expression_should_be_known("-webkit-min-device-pixel-ratio: 1.0");
  expression_should_not_be_known("min-device-pixel-ratio: 1.0");
  expression_should_be_known("-webkit-max-device-pixel-ratio: 1.0");
  expression_should_not_be_known("max-device-pixel-ratio: 1.0");

  should_apply("(-webkit-transform-3d)");

  features = [ "max-aspect-ratio", "device-aspect-ratio" ];
  for (i in features) {
    feature = features[i];
    expression_should_be_known(feature + ": 1/1");
    expression_should_be_known(feature + ": 1  /1");
    expression_should_be_known(feature + ": 1  / \t\n1");
    expression_should_be_known(feature + ": 1/\r1");
    expression_should_be_known(feature + ": 1");
    expression_should_be_known(feature + ": 0.5");
    expression_should_be_known(feature + ": 1.0/1");
    expression_should_be_known(feature + ": 1/1.0");
    expression_should_be_known(feature + ": 1.0/1.0");
    expression_should_be_known(feature + ": 1.5/1.2");
    expression_should_be_known(feature + ": 1.5");
    expression_should_be_known(feature + ": calc(1.2 * 1.3)");
    expression_should_be_known(feature + ": 1.1/calc(2.2 * 2.3)");
    expression_should_be_known(feature + ": calc(1.2 * 1.3)/2.2");
    expression_should_be_known(feature + ": calc(1.2 * 1.3)/calc(2.2 * 2.3)");
    expression_should_be_known(feature + ": 0/1");
    expression_should_be_known(feature + ": 1/0");
    expression_should_be_known(feature + ": 0/0");
    expression_should_not_be_known(feature + ": -1/1");
    expression_should_not_be_known(feature + ": 1/-1");
    expression_should_not_be_known(feature + ": -1/-1");
    expression_should_not_be_known(feature + ": -1/-1");
    expression_should_not_be_known(feature + ": -1/-1");
    expression_should_not_be_known(feature + ": invalid");
    expression_should_not_be_known(feature + ": 1 / invalid");
    expression_should_not_be_known(feature + ": 1 invalid");
  }

  var is_monochrome = query_applies("all and (min-monochrome: 1)");
  test_serialization("all and (min-monochrome: 1)", true, is_monochrome);
  var is_color = query_applies("all and (min-color: 1)");
  test_serialization("all and (min-color: 1)", true, is_color);
  isnot(is_monochrome, is_color, "should be either monochrome or color");

  function depth_query(prefix, depth) {
    return "all and (" + prefix + (is_color ? "color" : "monochrome") +
           ":" + depth + ")";
  }

  var depth = 0;
  do {
    if (depth > 50) {
      ok(false, "breaking from loop, depth > 50");
      break;
    }
  } while (query_applies(depth_query("min-", ++depth)));
  --depth;

  should_apply(depth_query("", depth));
  should_not_apply(depth_query("", depth - 1));
  should_not_apply(depth_query("", depth + 1));
  should_apply(depth_query("max-", depth));
  should_not_apply(depth_query("max-", depth - 1));
  should_apply(depth_query("max-", depth + 1));

  (is_color ? should_apply : should_not_apply)("all and (color)");
  expression_should_not_be_known("max-color");
  expression_should_not_be_known("min-color");
  (is_color ? should_not_apply : should_apply)("all and (monochrome)");
  expression_should_not_be_known("max-monochrome");
  expression_should_not_be_known("min-monochrome");
  (is_color ? should_apply : should_not_apply)("not all and (monochrome)");
  (is_color ? should_not_apply : should_apply)("not all and (color)");
  (is_color ? should_apply : should_not_apply)("only all and (color)");
  (is_color ? should_not_apply : should_apply)("only all and (monochrome)");

  features = [ "color", "min-monochrome", "max-color-index" ];
  for (i in features) {
    feature = features[i];
    expression_should_be_known(feature + ": 1");
    expression_should_be_known(feature + ": 327");
    expression_should_be_known(feature + ": 0");
    expression_should_be_known(feature + ": -1");
    expression_should_not_be_known(feature + ": 1.0");
    expression_should_not_be_known(feature + ": 1/1");
  }

  // Presume that we never support indexed color (at least not usefully
  // enough to call it indexed color).
  should_apply("(color-index: 0)");
  should_not_apply("(color-index: 1)");
  should_apply("(min-color-index: 0)");
  should_not_apply("(min-color-index: 1)");
  should_apply("(max-color-index: 0)");
  should_apply("(max-color-index: 1)");
  should_apply("(max-color-index: 157)");

  features = [ "resolution", "min-resolution", "max-resolution" ];
  for (i in features) {
    feature = features[i];
    expression_should_be_known(feature + ": 3dpi");
    expression_should_be_known(feature + ":3dpi");
    expression_should_be_known(feature + ": 3.0dpi");
    expression_should_be_known(feature + ": 3.4dpi");
    expression_should_be_known(feature + "\t: 120dpcm");
    expression_should_be_known(feature + ": 1dppx");
    expression_should_be_known(feature + ": 1x");
    expression_should_be_known(feature + ": 1.5dppx");
    expression_should_be_known(feature + ": 1.5x");
    expression_should_be_known(feature + ": 2.0dppx");
    expression_should_be_known(feature + ": 0dpi");
    expression_should_be_known(feature + ": 0dppx");
    expression_should_be_known(feature + ": 0x");
    expression_should_not_be_known(feature + ": -3dpi");
  }

  // Find the resolution using max-resolution
  var resolution = 0;
  do {
    ++resolution;
    if (resolution > 10000) {
      ok(false, "resolution greater than 10000dpi???");
      break;
    }
  } while (!query_applies("(max-resolution: " + resolution + "dpi)"));

  // resolution should now be Math.ceil() of the actual resolution.
  var dpi_high;
  var dpi_low = resolution - 1;
  if (query_applies("(min-resolution: " + resolution + "dpi)")) {
    // It's exact!
    should_apply("(resolution: " + resolution + "dpi)");
    should_apply("(resolution: " + Math.floor(resolution/96) + "dppx)");
    should_apply("(resolution: " + Math.floor(resolution/96) + "x)");
    should_not_apply("(resolution: " + (resolution + 1) + "dpi)");
    should_not_apply("(resolution: " + (resolution - 1) + "dpi)");
    dpi_high = resolution + 1;
  } else {
    // We have no way to test resolution applying since it need not be
    // an integer.
    should_not_apply("(resolution: " + resolution + "dpi)");
    should_not_apply("(resolution: " + (resolution - 1) + "dpi)");
    dpi_high = resolution;
  }

  should_apply("(min-resolution: " + dpi_low + "dpi)");
  should_not_apply("not all and (min-resolution: " + dpi_low + "dpi)");
  should_apply("not all and (min-resolution: " + dpi_high + "dpi)");
  should_not_apply("all and (min-resolution: " + dpi_high + "dpi)");

  // Test dpcm units based on what we computed in dpi.
  var dpcm_high = Math.ceil(dpi_high / 2.54);
  var dpcm_low = Math.floor(dpi_low / 2.54);
  should_apply("(min-resolution: " + dpcm_low + "dpcm)");
  should_apply("(max-resolution: " + dpcm_high + "dpcm)");
  should_not_apply("(max-resolution: " + dpcm_low + "dpcm)");
  should_apply("not all and (min-resolution: " + dpcm_high + "dpcm)");

  expression_should_be_known("scan");
  expression_should_be_known("scan: progressive");
  expression_should_be_known("scan:interlace");
  expression_should_not_be_known("min-scan:interlace");
  expression_should_not_be_known("scan: 1");
  expression_should_not_be_known("max-scan");
  expression_should_not_be_known("max-scan: progressive");
  // Assume we don't support tv devices.
  should_not_apply("(scan)");
  should_not_apply("(scan: progressive)");
  should_not_apply("(scan: interlace)");
  should_apply("not all and (scan)");
  should_apply("not all and (scan: progressive)");
  should_apply("not all and (scan: interlace)");

  expression_should_be_known("grid");
  expression_should_be_known("grid: 0");
  expression_should_be_known("grid: 1");
  expression_should_be_known("grid: 1");
  expression_should_not_be_known("min-grid");
  expression_should_not_be_known("min-grid:0");
  expression_should_not_be_known("max-grid: 1");
  expression_should_not_be_known("grid: 2");
  expression_should_not_be_known("grid: -1");

  // Assume we don't support grid devices
  should_not_apply("(grid)");
  should_apply("(grid: 0)");
  should_not_apply("(grid: 1)");
  should_not_apply("(grid: 2)");
  should_not_apply("(grid: -1)");

  for (let toggle of CHROME_ONLY_TOGGLES) {
    expression_should_not_be_known(toggle);
    expression_should_not_be_known(toggle + ": 1");
    expression_should_not_be_known(toggle + ": 0");
    expression_should_not_be_known(toggle + ": -1");
    expression_should_not_be_known(toggle + ": true");
    expression_should_not_be_known(toggle + ": false");
  }

  for (let query of CHROME_ONLY_QUERIES) {
    expression_should_not_be_known(query);
  }

  {
    let should_be_parseable_if_enabled = SpecialPowers.getBoolPref('layout.css.prefers-contrast.enabled')
      ? expression_should_be_known
      : expression_should_not_be_known;
    should_be_parseable_if_enabled("prefers-contrast");
    should_be_parseable_if_enabled("prefers-contrast: more");
    should_be_parseable_if_enabled("prefers-contrast: less");
    should_be_parseable_if_enabled("prefers-contrast: custom");
    should_be_parseable_if_enabled("prefers-contrast: no-preference");
  }

  {
    let should_be_parseable_if_enabled = SpecialPowers.getBoolPref('layout.css.forced-colors.enabled')
      ? expression_should_be_known
      : expression_should_not_be_known;
    should_be_parseable_if_enabled("forced-colors");
    should_be_parseable_if_enabled("forced-colors: none");
    should_be_parseable_if_enabled("forced-colors: active");
  }

  // OpenType SVG media features
  expression_should_not_be_known("(-moz-is-glyph)");
  expression_should_not_be_known("not (-moz-is-glyph)");
  expression_should_not_be_known("only (-moz-is-glyph)");
  expression_should_not_be_known("all and (-moz-is-glyph)");
  expression_should_not_be_known("not all and (-moz-is-glyph)");
  expression_should_not_be_known("only all and (-moz-is-glyph)");

  expression_should_not_be_known("(-moz-is-glyph:0)");
  expression_should_not_be_known("not (-moz-is-glyph:0)");
  expression_should_not_be_known("only (-moz-is-glyph:0)");
  expression_should_not_be_known("all and (-moz-is-glyph:0)");
  expression_should_not_be_known("not all and (-moz-is-glyph:0)");
  expression_should_not_be_known("only all and (-moz-is-glyph:0)");

  expression_should_not_be_known("(-moz-is-glyph:1)");
  expression_should_not_be_known("not (-moz-is-glyph:1)");
  expression_should_not_be_known("only (-moz-is-glyph:1)");
  expression_should_not_be_known("all and (-moz-is-glyph:1)");
  expression_should_not_be_known("not all and (-moz-is-glyph:1)");
  expression_should_not_be_known("only all and (-moz-is-glyph:1)");

  expression_should_not_be_known("(min--moz-is-glyph:0)");
  expression_should_not_be_known("(max--moz-is-glyph:0)");
  expression_should_not_be_known("(min--moz-is-glyph:1)");
  expression_should_not_be_known("(max--moz-is-glyph:1)");

  should_not_apply("not all and (-moz-is-glyph)");
  should_not_apply("(-moz-is-glyph:0)");
  should_not_apply("not all and (-moz-is-glyph:1)");
  should_not_apply("only all and (-moz-is-glyph:0)");
  should_not_apply("(-moz-is-glyph)");
  should_not_apply("(-moz-is-glyph:1)");
  should_not_apply("not all and (-moz-is-glyph:0)");
  should_not_apply("only all and (-moz-is-glyph:1)");

  // Resource documents (UA-only).
  expression_should_not_be_known("(-moz-is-resource-document)");

  // Parsing tests
  // bug 454227
  should_apply_unbalanced("(orientation");
  should_not_apply_unbalanced("not all and (orientation");
  should_not_apply_unbalanced("(orientation:");
  should_apply_unbalanced("all,(orientation:");
  should_not_apply_unbalanced("(orientation:,all");
  should_apply_unbalanced("not all and (grid");
  should_not_apply_unbalanced("only all and (grid");
  should_not_apply_unbalanced("(grid");
  should_apply_unbalanced("all,(grid");
  should_not_apply_unbalanced("(grid,all");
  // bug 454226
  should_apply(",all");
  should_apply("all,");
  should_apply(",all,");
  should_apply("all,badmedium");
  should_apply("badmedium,all");
  should_not_apply(",badmedium,");
  should_apply("all,(badexpression)");
  should_apply("(badexpression),all");
  should_not_apply("(badexpression),badmedium");
  should_not_apply("badmedium,(badexpression)");
  should_apply("all,[badsyntax]");
  should_apply("[badsyntax],all");
  should_not_apply("badmedium,[badsyntax]");
  should_not_apply("[badsyntax],badmedium");
  // bug 528096
  should_not_apply_unbalanced("((resolution),all");
  should_not_apply_unbalanced("(resolution(),all");
  should_not_apply_unbalanced("(resolution (),all");
  should_not_apply_unbalanced("(resolution:(),all");

  for (let rangeFeature of ["dynamic-range", "video-dynamic-range"]) {
    should_apply("(" + rangeFeature + ": standard)");
    expression_should_be_known("(" + rangeFeature + ": high)");
    expression_should_not_be_known("(" + rangeFeature + ": low)");
  }

  handle_posted_items();
}

/*
 * The cloning tests have to post tests that wait for onload.  However,
 * we also make a bunch of state changes during the tests above.  So we
 * always change state using the change_state call, with both makes the
 * change immediately and posts an item in the same queue so that we
 * make the same state change again later.
 */

var posted_items = [];

function change_state(func)
{
  func();
  posted_items.push({state: func});
}

function post_clone_test(srcdoc, testfunc)
{
  posted_items.push({srcdoc, testfunc});
}

function handle_posted_items()
{
  if (posted_items.length == 0) {
    SimpleTest.finish();
    return;
  }

  if ("state" in posted_items[0]) {
    var item = posted_items.shift();
    item.state();
    handle_posted_items();
    return;
  }

  var srcdoc = posted_items[0].srcdoc;
  iframe.onload = handle_iframe_onload;
  iframe.srcdoc = srcdoc;
}

function handle_iframe_onload(event)
{
  if (event.target != iframe)
    return;

  var item = posted_items.shift();
  item.testfunc();
  handle_posted_items();
}

</script>
</pre>
</body>
</html>