OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) | 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) |
4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. | 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 bool m_canOpenWindows; | 625 bool m_canOpenWindows; |
626 | 626 |
627 // If true, the test_shell will output a descriptive line for each resource | 627 // If true, the test_shell will output a descriptive line for each resource |
628 // load callback. | 628 // load callback. |
629 bool m_dumpResourceLoadCallbacks; | 629 bool m_dumpResourceLoadCallbacks; |
630 | 630 |
631 // If true, the test_shell will output a descriptive line for each resource | 631 // If true, the test_shell will output a descriptive line for each resource |
632 // request callback. | 632 // request callback. |
633 bool m_dumpResourceRequestCallbacks; | 633 bool m_dumpResourceRequestCallbacks; |
634 | 634 |
635 // If true, the test_shell will output the MIME type for each resource that | 635 // If true, the test_shell will output the MIME type for each resource that |
636 // was loaded. | 636 // was loaded. |
637 bool m_dumpResourceResponseMIMETypes; | 637 bool m_dumpResourceResponseMIMETypes; |
638 | 638 |
639 // If true, the test_shell will dump all changes to window.status. | 639 // If true, the test_shell will dump all changes to window.status. |
640 bool m_dumpWindowStatusChanges; | 640 bool m_dumpWindowStatusChanges; |
641 | 641 |
642 // If true, the test_shell will output a descriptive line for the progress | 642 // If true, the test_shell will output a descriptive line for the progress |
643 // finished callback. | 643 // finished callback. |
644 bool m_dumpProgressFinishedCallback; | 644 bool m_dumpProgressFinishedCallback; |
645 | 645 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 enum { | 697 enum { |
698 PointerLockWillSucceed, | 698 PointerLockWillSucceed, |
699 PointerLockWillRespondAsync, | 699 PointerLockWillRespondAsync, |
700 PointerLockWillFailSync, | 700 PointerLockWillFailSync, |
701 } m_pointerLockPlannedResult; | 701 } m_pointerLockPlannedResult; |
702 }; | 702 }; |
703 | 703 |
704 } | 704 } |
705 | 705 |
706 #endif // TestRunner_h | 706 #endif // TestRunner_h |
OLD | NEW |