Skip to content
Snippets Groups Projects
ChangeLog-2013-04-24 8.39 MiB
Newer Older
  • Learn to ignore specific revisions
  • 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 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    2013-04-23  Filip Pizlo  <fpizlo@apple.com>
    
            DFG CFA filters CheckFunction in a really weird way, and assumes that the function's structure won't change
            https://bugs.webkit.org/show_bug.cgi?id=115077
    
            Reviewed by Oliver Hunt.
            
            This hilarious test fails prior to the rest of this patch.
    
            * fast/js/dfg-check-function-change-structure-expected.txt: Added.
            * fast/js/dfg-check-function-change-structure.html: Added.
            * fast/js/jsc-test-list:
            * fast/js/script-tests/dfg-check-function-change-structure.js: Added.
            (foo):
            (bar):
    
    2013-04-23  Mihai Tica  <mitica@adobe.com>
    
            Add platform support for -webkit-background-blend-mode to CG context with background color
            https://bugs.webkit.org/show_bug.cgi?id=114412
    
            Reviewed by Darin Adler.
    
            Adding pixel tests for -webkit-background-blend-mode with bg-color
            effect-background-blend-mode-color.html uses accelerated compositing
            effect-background-blend-mode-color2.html uses software rendering
    
            * css3/compositing/effect-background-blend-mode-color-expected.txt: Added.
            * css3/compositing/effect-background-blend-mode-color.html: Added.
            * platform/mac/css3/compositing/effect-background-blend-mode-color-expected.png: Added.
            * css3/compositing/effect-background-blend-mode-color2-expected.txt: Added.
            * css3/compositing/effect-background-blend-mode-color2.html: Added.
            * platform/mac/css3/compositing/effect-background-blend-mode-color2-expected.png: Added.
    
    2013-04-23  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Global constructors should be configurable and not enumerable
            https://bugs.webkit.org/show_bug.cgi?id=110573
    
            Reviewed by Geoffrey Garen.
    
            Add new tests to make sure that the global constructors have the
            right attributes and to check that they are 'Deletable'.
    
            * canvas/philip/tests/type.delete-expected.txt: Removed.
            * canvas/philip/tests/type.delete.html: Removed. It was checking that global constructor
            could NOT be deleted, which is no longer according to the Web IDL specification.
            * fast/dom/constructed-objects-prototypes-expected.txt:
            * fast/dom/script-tests/constructed-objects-prototypes.js: Update test to hardcode a few
            global constructors as they are no longer enumerable.
            * fast/js/getOwnPropertyDescriptor-expected.txt:
            * fast/js/global-constructors.html: Removed. It was relying on the global constructors
            to be 'Enumerable', which is not to the latest Web IDL specification.
            * fast/js/global-constructors-attributes-expected.txt: Added.
            * fast/js/global-constructors-attributes.html: Added.
            * fast/js/global-constructors-deletable-expected.txt: Added.
            * fast/js/global-constructors-deletable.html: Added.
            * fast/js/global-constructors-expected.txt: Removed.
            * fast/js/resources/getOwnPropertyDescriptor.js:
            * fast/js/script-tests/global-constructors-attributes.js: Added.
            * fast/js/script-tests/global-constructors-deletable.js: Added.
            * fast/js/script-tests/global-constructors.js: Removed.
            * platform/efl/fast/dom/constructed-objects-prototypes-expected.txt: Removed.
            * platform/efl/fast/js/global-constructors-expected.txt: Removed.
            * platform/gtk/fast/dom/constructed-objects-prototypes-expected.txt: Removed.
            * platform/gtk/fast/js/global-constructors-expected.txt: Removed.
            * platform/mac/fast/js/global-constructors-expected.txt: Removed.
            * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt: Removed.
            * platform/qt/fast/js/global-constructors-expected.txt: Removed.
            * platform/win/fast/dom/constructed-objects-prototypes-expected.txt: Removed.
            * platform/win/fast/js/global-constructors-expected.txt: Removed.
    
    2013-04-23  Geoffrey Garen  <ggaren@apple.com>
    
            Filled out more cases of branch folding in bytecode when emitting expressions into a branching context
            https://bugs.webkit.org/show_bug.cgi?id=115057
    
            Reviewed by Filip Pizlo.
    
            Added a performance test for interesting branch types.
    
            * fast/js/regress/branch-fold-expected.txt: Added.
            * fast/js/regress/branch-fold.html: Added.
            * fast/js/regress/script-tests/branch-fold.js: Added.
    
    2013-04-23  Simon Fraser  <simon.fraser@apple.com>
    
            Don't create compositing layers for sticky position unless using the ScrollingCoordinator
            https://bugs.webkit.org/show_bug.cgi?id=115060
    
            Reviewed by Tim Horton.
            
            Tests that we create layers for sticky position when in tiled drawing mode,
            and that we have no layers when not.
    
            * compositing/layer-creation/no-compositing-for-sticky-expected.txt: Added.
            * compositing/layer-creation/no-compositing-for-sticky.html: Added.
            * platform/mac-wk2/tiled-drawing/sticky/sticky-layers-expected.txt: Added.
            * platform/mac-wk2/tiled-drawing/sticky/sticky-layers.html: Added.
    
    2013-04-23  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            'length' property of DOM bindings functions returns wrong value
            https://bugs.webkit.org/show_bug.cgi?id=110569
    
            Reviewed by Geoffrey Garen.
    
            Update fast/js/constructor-length.html test case now that only
            mandatory arguments are considered for the constructor length.
    
            Also add a new fast/js/function-length.html test to make sure
            that the 'length' property of Function objects from DOM
            bindings behaves according to the Web IDL specification as
            this was not covered by existing tests.
    
            * fast/files/blob-constructor-expected.txt: Rebaseline.
            * fast/files/script-tests/blob-constructor.js: Update test now that Blob constructor
            length is 0 instead of 2.
            * fast/js/constructor-length.html:
            * fast/js/function-length-expected.txt: Added.
            * fast/js/function-length.html: Added.
            * platform/blackberry/fast/js/constructor-length-expected.txt: Rebaseline.
            * platform/efl/TestExpectations: Unskip fast/js/constructor-length.html for EFL port.
            * platform/efl/fast/js/constructor-length-expected.txt: Copied from LayoutTests/platform/mac/fast/js/constructor-length-expected.txt.
            * platform/gtk/fast/js/constructor-length-expected.txt: Rebaseline.
            * platform/mac/fast/js/constructor-length-expected.txt: Rebaseline.
            * platform/qt/fast/js/constructor-length-expected.txt: Rebaseline.
    
    2013-04-23  Jessie Berlin  <jberlin@apple.com>
    
            NRWT: confusing warning about a line being in a Skipped file when it is really just listed
            in _missing_symbol_to_skipped_tests in base.py
            https://bugs.webkit.org/show_bug.cgi?id=108884
    
            Reviewed by Tim Horton.
    
            Explicitly skip the mhtml tests on the Mac and Win ports.
    
            * platform/mac/TestExpectations:
            * platform/win/TestExpectations:
    
    2013-04-23  Dirk Schulze  <krit@webkit.org>
    
            Pick up color and mat values in custom shaders
            https://bugs.webkit.org/show_bug.cgi?id=115046
    
            Reviewed by Dean Jackson.
    
            Test that the CSS defined color values and mat2-4 functions get 
            set as uniforms in shader programs.
    
            * css3/filters/custom/custom-filter-color-expected.html: Added.
            * css3/filters/custom/custom-filter-color.html: Added.
            * css3/filters/custom/custom-filter-matN-expected.html: Added.
            * css3/filters/custom/custom-filter-matN.html: Added.
    
    2013-04-23  Simon Fraser  <simon.fraser@apple.com>
    
            Tiled layers clipped inside nested transform/preserve-3d hierarchies
            https://bugs.webkit.org/show_bug.cgi?id=115044
    
            Reviewed by Dean Jackson.
            
            Testcase that dumps visible rects for tiled layers inside nested
            transformed/preserve-3d hierarchies.
    
            * compositing/visible-rect/flipped-preserve-3d-expected.txt: Added.
            * compositing/visible-rect/flipped-preserve-3d.html: Added.
    
    2013-04-23  Claudio Saavedra  <csaavedra@igalia.com>
    
            Ctrl+Shift+Right in Windows should select the spacing after the word
            https://bugs.webkit.org/show_bug.cgi?id=110487
    
            Reviewed by Ryosuke Niwa.
    
            * editing/deleting/smart-editing-disabled-win-expected.txt: Added.
            * editing/deleting/smart-editing-disabled-win.html: Added.
            * editing/execCommand/query-command-state-expected.txt:
            * editing/execCommand/remove-format-multiple-elements-win-expected.txt: Added.
            * editing/execCommand/remove-format-multiple-elements-win.html: Added.
            * editing/execCommand/script-tests/query-command-state.js:
            (runTests): Update to reflect new editing behavior in Windows.
            * editing/execCommand/script-tests/remove-format-multiple-elements-win.js: Added.
            * editing/execCommand/script-tests/toggle-link-win.js: Added.
            * editing/execCommand/script-tests/toggle-unlink-win.js: Added.
            * editing/execCommand/toggle-link-win-expected.txt: Added.
            * editing/execCommand/toggle-link-win.html: Added.
            * editing/execCommand/toggle-unlink-win-expected.txt: Added.
            * editing/execCommand/toggle-unlink-win.html: Added.
            * editing/selection/extend-selection-enclosing-block-win-expected.txt: Added.
            * editing/selection/extend-selection-enclosing-block-win.html: Added.
            * editing/selection/resources/extend-selection.js:
            (extendSelectionWithinBlockWin): Method to test behavior in windows.
            (extendAndLogSelectionWithinBlock): Add test support for Windows.
            * editing/selection/selection-extend-should-not-move-across-caret-on-mac.html:
            Add test support for Windows editing behavior.
            * editing/style/make-text-writing-direction-inline-win-expected.txt: Added.
            * editing/style/make-text-writing-direction-inline-win.html: Added.
            * editing/style/push-down-font-styles-win-expected.txt: Added.
            * editing/style/push-down-font-styles-win.html: Added.
            * editing/style/push-down-implicit-styles-around-list-win-expected.txt: Added.
            * editing/style/push-down-implicit-styles-around-list-win.html: Added.
            * editing/style/script-tests/make-text-writing-direction-inline-win.js: Added.
            * editing/style/script-tests/push-down-font-styles-win.js: Added.
            * editing/style/script-tests/push-down-implicit-styles-around-list-win.js: Added.
    
    2013-04-23  Zoltan Horvath  <zoltan@webkit.org>
    
            [Qt] REGRESSION (r148975) shape-inside-percentage.html and shape-inside-overflow-fixed-dimensions.html are failing after r148975
            https://bugs.webkit.org/show_bug.cgi?id=115053
    
            Unreviewed gardening.
    
            * platform/qt/TestExpectations: Skip failing tests.
    
    2013-04-23  Seokju Kwon  <seokju.kwon@gmail.com>
    
            Remove fast/js/i18n-bindings-locale.html
            https://bugs.webkit.org/show_bug.cgi?id=115024
    
            Reviewed by Geoffrey Garen.
    
            Remove V8-i18n-extension test(r78095) from all ports.
    
            * fast/js/i18n-bindings-locale-expected.txt: Removed.
            * fast/js/i18n-bindings-locale.html: Removed.
            * fast/js/script-tests/i18n-bindings-locale.js: Removed.
            * platform/efl/TestExpectations:
            * platform/gtk/TestExpectations:
            * platform/mac/TestExpectations:
            * platform/qt/TestExpectations:
            * platform/win/TestExpectations:
            * platform/wincairo/TestExpectations:
    
    2013-04-23  Zoltan Horvath  <zoltan@webkit.org>
    
            [CSS Exclusions] shape-inside overflow should be pushed to the outside of the content box
            https://bugs.webkit.org/show_bug.cgi?id=114526
    
            Reviewed by David Hyatt.
    
            Update and add tests for the new behavior.
    
            * fast/exclusions/resources/rounded-rectangle.js:
            (generateString): Modify the function to not generate overflow content.
            * fast/exclusions/shape-inside/shape-inside-bottom-edge-expected.html:
            * fast/exclusions/shape-inside/shape-inside-bottom-edge.html:
            * fast/exclusions/shape-inside/shape-inside-empty-expected.html:
            * fast/exclusions/shape-inside/shape-inside-empty.html:
            * fast/exclusions/shape-inside/shape-inside-overflow-expected.html:
            * fast/exclusions/shape-inside/shape-inside-overflow-fixed-dimensions-expected.html: Added.
            * fast/exclusions/shape-inside/shape-inside-overflow-fixed-dimensions.html: Added.
            * fast/exclusions/shape-inside/shape-inside-overflow.html:
            * fast/exclusions/shape-inside/shape-inside-percentage-expected.html:
            * fast/exclusions/shape-inside/shape-inside-percentage.html:
            * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-004-expected.html:
            * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-004.html:
            * fast/regions/shape-inside/shape-inside-on-additional-regions-expected.html:
            * fast/regions/shape-inside/shape-inside-on-additional-regions.html: This test is not intented to test the overflow behavior from
            shape-inside on regions, so I set the shape's height to the container's height.
    
    2013-04-23  Robert Hogan  <robert@webkit.org>
    
            checkLayout() should error out if no data-expected* attributes were found
            https://bugs.webkit.org/show_bug.cgi?id=114900
    
            Reviewed by Ojan Vafai.
    
            If checkLayout() doesn't find any attributes checking the node's layout then error out
            instead of assuming the test has passed. This will ensure data-* attributes containing
            typos don't register as a pass.
    
            * fast/check-layout-error-no-attributes-expected.txt: Added.
            * fast/check-layout-error-no-attributes.html: Added.
            * resources/check-layout.js:
            (.):
    
    2013-04-23  Lamarque V. Souza  <Lamarque.Souza@basyskom.com>
    
            WebSocket: Return type of send() should be void if hybi-10 protocol is chosen
            https://bugs.webkit.org/show_bug.cgi?id=65850
    
            Reviewed by Alexey Proskuryakov.
    
            Update tests and test results because WebSocket.send() now returns undefined when
            the hybi WebSocket protocol is used.
    
            * http/tests/websocket/tests/hybi/bufferedAmount-after-close-expected.txt:
            * http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy-expected.txt:
            * http/tests/websocket/tests/hybi/bufferedAmount-after-close-in-busy.html:
            * http/tests/websocket/tests/hybi/bufferedAmount-after-close.html:
            * http/tests/websocket/tests/hybi/send-after-close-on-unload-expected.txt:
            * http/tests/websocket/tests/hybi/send-after-close-on-unload.html:
    
    2013-04-23  Andreas Kling  <akling@apple.com>
    
            Clear StyleResolver state before returning from styleForElement().
            <http://webkit.org/b/115035>
    
            Reviewed by Antti Koivisto.
    
            From Blink r148687 by <inferno@chromium.org>.
    
            * fast/css/reload-non-styled-element-crash-expected.txt: Added.
            * fast/css/reload-non-styled-element-crash.html: Added.
    
    2013-04-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    
            Baselines for fast/css/image-rendering.html
    
            Unreviewed gardening.
    
            * fast/css/image-rendering-expected.png: Added.
            * fast/css/image-rendering-expected.txt: Added.
            * platform/gtk-wk1/fast/css/image-rendering-expected.txt: Added.
    
    2013-04-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    
            Remove the text expecation again to force the bots to fail and generate png expectations.
    
            Unreviewed ungardening.
    
            * fast/css/image-rendering-expected.txt: Removed.
    
    2013-04-23  Zan Dobersek  <zdobersek@igalia.com>
    
            Unreviewed GTK gardening. Rebaselining after r148944.
    
            * platform/gtk/TestExpectations:
            * platform/gtk/fast/table/giantRowspan-expected.txt:
            * platform/gtk/fast/table/giantRowspan2-expected.png:
            * platform/gtk/fast/table/giantRowspan2-expected.txt:
            * platform/gtk/tables/mozilla/bugs/bug133756-1-expected.txt:
            * platform/gtk/tables/mozilla/bugs/bug133756-2-expected.png:
            * platform/gtk/tables/mozilla/bugs/bug133756-2-expected.txt:
            * platform/gtk/tables/mozilla/bugs/bug220536-expected.png:
            * platform/gtk/tables/mozilla/bugs/bug220536-expected.txt:
            * platform/gtk/tables/mozilla/bugs/bug8858-expected.txt:
            * platform/gtk/tables/mozilla/core/bloomberg-expected.png:
            * platform/gtk/tables/mozilla/core/bloomberg-expected.txt:
            * platform/gtk/tables/mozilla/core/row_span-expected.png:
            * platform/gtk/tables/mozilla/core/row_span-expected.txt:
            * platform/gtk/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
            * platform/gtk/tables/mozilla_expected_failures/bugs/bug23847-expected.png:
            * platform/gtk/tables/mozilla_expected_failures/bugs/bug23847-expected.txt:
            * platform/gtk/tables/mozilla_expected_failures/bugs/bug65372-expected.png:
            * platform/gtk/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
    
    2013-04-23  Antoine Quint  <graouts@apple.com>
    
            Initial advance of text runs should be taken into account
            https://bugs.webkit.org/show_bug.cgi?id=114949
    
            Reviewed by Darin Adler.
    
            * fast/text/complex-initial-advance-expected.html: Added.
            * fast/text/complex-initial-advance.html: Added.
    
    2013-04-23  Zan Dobersek  <zdobersek@igalia.com>
    
            Unreviewed GTK gardening.
    
            * platform/gtk/TestExpectations: Adding failure expectations for two DOM4 constructors tests
            that started failing after enabling the subpixel layout due to LayoutUnit overflows.
    
    2013-04-23  Jinwoo Song  <jinwoo7.song@samsung.com>
    
            [EFL] EFL gardening
            https://bugs.webkit.org/show_bug.cgi?id=115013
    
            Remove editing/selection/doubleclick-whitespace-crash.html and
            editing/selection/doubleclick-whitespace-img-crash.html from TestExpectations
            after r144221.
    
            Unreviewed, EFL gardening.
    
            * platform/efl-wk2/TestExpectations:
    
    2013-04-23  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    
            [Qt] Unreviewed gardening. Changing failure mark to skip after r148948.
    
            * platform/qt/TestExpectations:
    
    2013-04-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    
            Respect image-rendering setting for determing image-rendering quality
            https://bugs.webkit.org/show_bug.cgi?id=113405
    
            Reviewed by Benjamin Poulain.
    
            Moved the two tests of image-rendering out of CSS3 since it was removed from the final recommendation.
            Added tests of the supported values, and upgraded one test to a reference test so that it now tests
            that -webkit-optimize-contrast gets converted to and treated as -webkit-crisp-edges.
    
            Baselines for fast/css/image-rendering.html will be uploaded later when the bots have generated them.
    
            * css3/images/optimize-contrast-image-expected.png: Removed.
            * css3/images/optimize-contrast-image-expected.txt: Removed.
            * fast/css/image-rendering-canvas-expected.png: Renamed from LayoutTests/css3/images/optimize-contrast-canvas-expected.png.
            * fast/css/image-rendering-canvas-expected.txt: Renamed from LayoutTests/css3/images/optimize-contrast-canvas-expected.txt.
            * fast/css/image-rendering-canvas.html: Renamed from LayoutTests/css3/images/optimize-contrast-canvas.html.
            * fast/css/image-rendering-expected.txt: Added.
            * fast/css/image-rendering-parsing-expected.txt: Added.
            * fast/css/image-rendering-parsing.html: Renamed from LayoutTests/fast/css/image-set-parsing.html.
            * fast/css/image-rendering.html: Added.
            * fast/css/optimize-contrast-image-expected.html: Added.
            * fast/css/optimize-contrast-image.html: Renamed from LayoutTests/css3/images/optimize-contrast-image.html.
            * fast/css/script-tests/image-rendering-parsing.js: Added.
            (testImageRendering):
    
    2013-04-23  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    
            [Qt] Unreviewed gardening.
    
            * platform/qt/TestExpectations:
    
    2013-04-23  Commit Queue  <rniwa@webkit.org>
    
            Unreviewed, rolling out r148923.
            http://trac.webkit.org/changeset/148923
            https://bugs.webkit.org/show_bug.cgi?id=115020
    
            The patch causes multiple failures in CSS, canvas tests
            (Requested by zdobersek on #webkit).
    
            * fast/canvas/script-tests/shadow-image.js: Removed.
            * fast/canvas/shadow-image-expected.txt: Removed.
            * fast/canvas/shadow-image.html: Removed.
    
    2013-04-22  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Unskip several test cases that are no longer crashing after r148945.
    
            * platform/efl/TestExpectations:
    
    2013-04-22  Suchit Agrawal  <a.suchit@samsung.com>
    
            table's text aligned on top instead of center because of rowspan
            https://bugs.webkit.org/show_bug.cgi?id=18092
    
            Reviewed by Beth Dakin.
    
            Added test cases, based on rowspan issue.
            * fast/table/Rowspan-value-more-than-number-of-rows-present-expected.txt: Added.
            * fast/table/Rowspan-value-more-than-number-of-rows-present.html: Added.
    
            Test cases need to do rebaseline in efl, gtk and mac platforms.
            * platform/efl/TestExpectations:
            * platform/gtk/TestExpectations:
            * platform/mac/TestExpectations:
    
            Test case results are updated in qt platform.
            * platform/qt/fast/table/giantRowspan-expected.png:
            * platform/qt/fast/table/giantRowspan-expected.txt:
            * platform/qt/fast/table/giantRowspan2-expected.png:
            * platform/qt/fast/table/giantRowspan2-expected.txt:
            * platform/qt/tables/mozilla/bugs/bug133756-1-expected.png:
            * platform/qt/tables/mozilla/bugs/bug133756-1-expected.txt:
            * platform/qt/tables/mozilla/bugs/bug133756-2-expected.png:
            * platform/qt/tables/mozilla/bugs/bug133756-2-expected.txt:
            * platform/qt/tables/mozilla/bugs/bug220536-expected.png:
            * platform/qt/tables/mozilla/bugs/bug220536-expected.txt:
            * platform/qt/tables/mozilla/bugs/bug8858-expected.txt:
            * platform/qt/tables/mozilla/core/bloomberg-expected.png:
            * platform/qt/tables/mozilla/core/bloomberg-expected.txt:
            * platform/qt/tables/mozilla/core/row_span-expected.png:
            * platform/qt/tables/mozilla/core/row_span-expected.txt:
            * platform/qt/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
            * platform/qt/tables/mozilla_expected_failures/bugs/bug23847-expected.png:
            * platform/qt/tables/mozilla_expected_failures/bugs/bug65372-expected.png:
            * platform/qt/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
            * tables/mozilla/core/bloomberg-expected.txt:
            * tables/mozilla/core/row_span-expected.txt:
            * tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
            * tables/mozilla_expected_failures/bugs/bug23847-expected.txt:
    
    2013-04-22  Mihnea Ovidenie  <mihnea@adobe.com>
    
            [CSS Regions] Region's float parent doesn't size according to region size but to content node size
            https://bugs.webkit.org/show_bug.cgi?id=111332
    
            Reviewed by David Hyatt.
    
            Added tests for intrinsic and preferred width computation for region.
    
            * fast/regions/intrinsic-sized-regions-expected.txt: Added.
            * fast/regions/intrinsic-sized-regions.html: Added.
            * fast/regions/region-with-float-parent-expected.txt: Added.
            * fast/regions/region-with-float-parent.html: Added.
    
    2013-04-22  Jessie Berlin  <jberlin@apple.com>
    
            Remove references to the inspector/profiler/memory-instrumentation tests removed in r148921
    
            Rubber-stamped by Benjamin Poulain.
    
            * platform/efl/TestExpectations:
            * platform/gtk/TestExpectations:
            * platform/mac/TestExpectations:
            * platform/qt/TestExpectations:
            * platform/win/TestExpectations:
            * platform/wincairo/TestExpectations:
    
    2013-04-22  Brady Eidson  <beidson@apple.com>
    
            REGRESSION (r141136): Wiki "Random article" function very broken.
            <rdar://problem/13229985> and https://bugs.webkit.org/show_bug.cgi?id=114480
    
            Reviewed by Alexey Proskuryakov.
    
            * http/tests/navigation/redirect-to-random-url-versus-memory-cache-expected.txt: Added.
            * http/tests/navigation/redirect-to-random-url-versus-memory-cache.html: Added.
            * http/tests/navigation/resources/randomredirects/0.php: Added.
            * http/tests/navigation/resources/randomredirects/1.php: Added.
            * http/tests/navigation/resources/randomredirects/2.php: Added.
            * http/tests/navigation/resources/randomredirects/3.php: Added.
            * http/tests/navigation/resources/randomredirects/4.php: Added.
            * http/tests/navigation/resources/randomredirects/5.php: Added.
            * http/tests/navigation/resources/randomredirects/6.php: Added.
            * http/tests/navigation/resources/randomredirects/7.php: Added.
            * http/tests/navigation/resources/randomredirects/8.php: Added.
            * http/tests/navigation/resources/randomredirects/9.php: Added.
            * http/tests/navigation/resources/randomredirects/randomredirect.php: Added.
    
    2013-04-22  Rashmi Shyamasundar  <rashmi.s2@samsung.com>
    
            [Cairo] Canvas-shadow behavior is not being as expected
            https://bugs.webkit.org/show_bug.cgi?id=108897
    
            Reviewed by Martin Robinson.
    
            Test to verify the shadow of an image drawn on canvas. 
            This test uses an image whose size is smaller than,
            the size of the rectangle which should be filled with the image. 
    
            * fast/canvas/canvas-image-shadow-expected.txt: Added.
            * fast/canvas/canvas-image-shadow.html: Added.
            * fast/canvas/green.png: Added.
            * fast/canvas/script-tests/canvas-image-shadow.js: Added.
            (draw):
    
    2013-04-22  Benjamin Poulain  <benjamin@webkit.org>
    
            Remove the memory instrumentation code
            https://bugs.webkit.org/show_bug.cgi?id=114931
    
            Reviewed by Andreas Kling.
    
            * inspector/profiler/memory-instrumentation-cached-images-expected.txt: Removed.
            * inspector/profiler/memory-instrumentation-cached-images.html: Removed.
            * inspector/profiler/memory-instrumentation-canvas-expected.txt: Removed.
            * inspector/profiler/memory-instrumentation-canvas.html: Removed.
            * inspector/profiler/memory-instrumentation-external-array-expected.txt: Removed.
            * inspector/profiler/memory-instrumentation-external-array.html: Removed.
            * inspector/profiler/memory-instrumentation-external-string-expected.txt: Removed.
            * inspector/profiler/memory-instrumentation-external-string.html: Removed.
            * inspector/profiler/memory-instrumentation-test.js: Removed.
    
    2013-04-22  Bear Travis  <betravis@adobe.com>
    
            Do not reuse ExclusionShapeInsideInfo in a recursive region layout
            https://bugs.webkit.org/show_bug.cgi?id=114467
    
            Reviewed by David Hyatt.
    
            Test that for various types of inline containers do not reuse
            ExclusionShapeInsideInfo when laying out their children.
    
            * fast/regions/shape-inside/shape-inside-recursive-layout-expected.html: Added.
            * fast/regions/shape-inside/shape-inside-recursive-layout.html: Added.
    
    2013-04-22  Jessie Berlin  <jberlin@apple.com>
    
            Fix r148773.
    
            * platform/mac-lion/TestExpectations:
    
    2013-04-22  Bear Travis  <betravis@adobe.com>
    
            [css exclusions] shape-inside-recursive-layout.html should not yet test display: inline-grid
            https://bugs.webkit.org/show_bug.cgi?id=114986
    
            Reviewed by Dirk Schulze.
    
            Because the inline-grid value is not yet supported, the test case is falling back to
            display: block. This causes an incorrect layout, as block and inline content react to
            shape-inside differently.
    
            * fast/exclusions/shape-inside/shape-inside-recursive-layout-expected.html:
            * fast/exclusions/shape-inside/shape-inside-recursive-layout.html:
    
    2013-04-22  Eric Carlson  <eric.carlson@apple.com>
    
            [Mac] "automatic" track selection should only select a track that matches user language
            https://bugs.webkit.org/show_bug.cgi?id=114976
    
            Reviewed by Jer Noble.
    
            * media/track/track-automatic-subtitles-expected.txt: Added.
            * media/track/track-automatic-subtitles.html: Added.
            * platform/mac/TestExpectations: Skip track-user-preferences.html, the logic is no longer
                 correct for the Mac port.
    
    2013-04-22  Andy Estes  <aestes@apple.com>
    
            Range.getClientRects() should not include rects for partially selected elements
            https://bugs.webkit.org/show_bug.cgi?id=76839
    
            Reviewed by Sam Weinig.
    
            * fast/dom/Range/getClientRects-expected.txt: Updated expected result.
            * fast/dom/Range/getClientRects.html: Added new test cases.
    
    2013-04-22  Eric Carlson  <eric.carlson@apple.com>
    
            Unreviewed Mac gardening. Update a test and results now that forced text 
            tracks are supported.
    
            * media/track/track-in-band-expected.txt:
            * media/track/track-in-band.html:
    
    2013-04-22  Yi Shen  <max.hong.shen@gmail.com>
    
            Crash on OS X when shift clicking outside of input
            https://bugs.webkit.org/show_bug.cgi?id=104058
    
            Reviewed by Chang Shu.
    
            Add test for shift click crash issue.
    
            * editing/selection/crash-on-shift-click-expected.txt: Added.
            * editing/selection/crash-on-shift-click.html: Added.
    
    2013-04-22  Jessie Berlin  <jberlin@apple.com>
    
            Fix an incorrect rebaseline done in r148830.
    
            Instead of updating the cross platform wk2 results, r148830 should have added efl wk2
            specific results. Move the previous mac wk2 specific results into the mac wk2 platform
            directory.
    
            * platform/efl-wk2/loader/go-back-cached-main-resource-expected.txt: Renamed from LayoutTests/platform/wk2/loader/go-back-cached-main-resource-expected.txt.
            * platform/mac-wk2/loader/go-back-cached-main-resource-expected.txt: Downloaded from the mac-wk2 bots.
    
    2013-04-22  Mario Sanchez Prada  <mario.prada@samsung.com>
    
            Update layout test verifying Tab behaves correctly after linking to fragment ID
            https://bugs.webkit.org/show_bug.cgi?id=114645
    
            Reviewed by Chris Fleizach.
    
            * fast/dom/fragment-activation-focuses-target.html: Updated test.
            * fast/dom/fragment-activation-focuses-target-expected.txt: Updated expectations.
    
    2013-04-22  Mike Fenton  <mifenton@rim.com>
    
            [BlackBerry] Add additional datalist support.
            https://bugs.webkit.org/show_bug.cgi?id=114883
    
            Reviewed by Rob Buis.
    
            PR 210083.
    
            Fix results for fast/forms/datalist/input-list.
    
            Internally Reviewed by Otto Cheung.
    
            * platform/blackberry/fast/forms/datalist/input-list-expected.txt: Added.
    
    2013-04-22  Andrei Bucur  <abucur@adobe.com>
    
            [CSS Regions] Add tests for lists and counters
            https://bugs.webkit.org/show_bug.cgi?id=103975
    
            Reviewed by Andreas Kling.
    
            Lists and counters work correctly with regions since r148026 (http://trac.webkit.org/changeset/148026).
            This patch adds W3C formatted ref tests to our battery.
    
            * fast/regions/counters/extract-list-items-001-expected.html: Added.
            * fast/regions/counters/extract-list-items-001.html: Added.
            * fast/regions/counters/extract-list-items-002-expected.html: Added.
            * fast/regions/counters/extract-list-items-002.html: Added.
            * fast/regions/counters/extract-list-items-003-expected.html: Added.
            * fast/regions/counters/extract-list-items-003.html: Added.
            * fast/regions/counters/extract-list-items-004-expected.html: Added.
            * fast/regions/counters/extract-list-items-004.html: Added.
            * fast/regions/counters/extract-list-items-005-expected.html: Added.
            * fast/regions/counters/extract-list-items-005.html: Added.
            * fast/regions/counters/extract-list-items-006-expected.html: Added.
            * fast/regions/counters/extract-list-items-006.html: Added.
            * fast/regions/counters/extract-list-items-007-expected.html: Added.
            * fast/regions/counters/extract-list-items-007.html: Added.
            * fast/regions/counters/extract-list-items-008-expected.html: Added.
            * fast/regions/counters/extract-list-items-008.html: Added.
            * fast/regions/counters/extract-list-items-009-expected.html: Added.
            * fast/regions/counters/extract-list-items-009.html: Added.
            * fast/regions/counters/extract-list-items-010-expected.html: Added.
            * fast/regions/counters/extract-list-items-010.html: Added.
            * fast/regions/counters/extract-list-items-011-expected.html: Added.
            * fast/regions/counters/extract-list-items-011.html: Added.
            * fast/regions/counters/extract-list-items-012-expected.html: Added.
            * fast/regions/counters/extract-list-items-012.html: Added.
            * fast/regions/counters/extract-list-items-013-expected.html: Added.
            * fast/regions/counters/extract-list-items-013.html: Added.
            * fast/regions/counters/extract-list-items-014-expected.html: Added.
            * fast/regions/counters/extract-list-items-014.html: Added.
            * fast/regions/counters/extract-list-items-015-expected.html: Added.
            * fast/regions/counters/extract-list-items-015.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs-divs-001-expected.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs-divs-001.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs-divs-002-expected.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs-divs-002.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs-expected.html: Added.
            * fast/regions/counters/extract-numbered-paragraphs.html: Added.
            * fast/regions/counters/extract-numbered-spans-display-only-some-expected.html: Added.
            * fast/regions/counters/extract-numbered-spans-display-only-some.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-001-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-001.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-002-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-002.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-003-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-003.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-001-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-001.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-003-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-003.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-004-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-004.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-005-expected.html: Added.
            * fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-005.html: Added.
            * fast/regions/counters/extract-unordered-lists-in-regions-expected.html: Added.
            * fast/regions/counters/extract-unordered-lists-in-regions.html: Added.
    
    2013-04-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    
            Unreviewed, gardening. css3-device-adaptation doesn't work for WK1 EFL properly.
    
            * platform/efl-wk1/TestExpectations: Added tests related to css3-device-adaptation.
    
    2013-04-22  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Mark IndexedDB test as crashing in Release mode and fix duplicate line in
            TestExpectations.
    
            * platform/efl/TestExpectations:
    
    2013-04-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    
            Unreviewed, EFL WK1 gardening. Skip pasteboard tests because EFL WK1 doesn't support it yet.
    
            * platform/efl-wk1/TestExpectations:
    
    2013-04-22  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Skip several compositing test cases on EFL WK2 due to regression in
            r148748.
    
            * platform/efl-wk2/TestExpectations:
    
    2013-04-22  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Add several regressions to TestExpectations to make the tree green.
    
            * platform/efl-wk2/TestExpectations:
            * platform/efl/TestExpectations:
    
    2013-04-22  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Fix expected result for several test cases.
    
            * platform/efl/TestExpectations:
    
    2013-04-22  Zan Dobersek  <zdobersek@igalia.com>
    
            Unreviewed GTK gardening.
    
            * platform/gtk/TestExpectations: Unskipping the fast/sub-pixel layout tests.
            Removing failure expectations for tests that are passing after the subpixel layout was enabled.
    
    2013-04-22  Ádám Kallai  <kadam@inf.u-szeged.hu>
    
            [Qt] Unreviewed gardening.
    
            * platform/qt/TestExpectations: Skip a failing reftest after r148859.
            * platform/qt/fast/borders/rtl-border-04-expected.png: Update after r148791.
            * platform/qt/fast/borders/rtl-border-04-expected.txt: Update after r148791.
    
    2013-04-22  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    
            [Qt] Unreviewed gardening.
    
            Unskip fast/exclusions tests after r148594.
    
            * platform/qt/TestExpectations:
    
    2013-04-22  Krzysztof Czech  <k.czech@samsung.com>
    
            [EFL] accessibility/language-attribute.html is failing
            https://bugs.webkit.org/show_bug.cgi?id=112030
    
            Unreviewed, EFL gardening.
    
            Unskipping accessibility/language-attribute.html after r148737.
    
            * platform/efl-wk2/TestExpectations:
    
    2013-04-22  Mihai Maerean  <mmaerean@adobe.com>
    
             [CSS Regions] Elements in a region should be assignable to a named flow
            https://bugs.webkit.org/show_bug.cgi?id=74144
    
             Reviewed by David Hyatt.
    
             * fast/regions/flow-body-in-html-expected.txt: Added.
            * fast/regions/flow-body-in-html.html: Added. To test the duplicate bug #103685.
            * fast/regions/region-content-flown-into-region-expected.txt: Added.
            * fast/regions/region-content-flown-into-region.html: Added.
            * fast/regions/universal-selector-children-to-the-same-region-expected.txt: Added.
            * fast/regions/universal-selector-children-to-the-same-region.html: Added. To test the duplicate bug #103685.
    
    2013-04-22  Andrei Bucur  <abucur@adobe.com>
    
            Use DOM ordering for list counts
            https://bugs.webkit.org/show_bug.cgi?id=110352
    
            Reviewed by Elliott Sprehn.
    
            The fast/dom/shadow/shadow-and-list-elements-expected.html has changed because the list items
            inside the shadow tree no longer see the root <ol> element.
            The test fast/lists/positioned-count-crash.html has the correct rendering after changing
            the list counting to be in DOM order.
    
            * fast/dom/shadow/shadow-and-list-elements-expected.html:
            * fast/lists/positioned-count-crash-expected.txt:
    
    2013-04-22  Seokju Kwon  <seokju.kwon@gmail.com>
    
            [GTK] Cleanup TestExpectations to pass --lint-test-files
            https://bugs.webkit.org/show_bug.cgi?id=114927
    
            Unreviewed gardening.
    
            * platform/gtk/TestExpectations:
    
    2013-04-21  Carlos Garcia Campos  <cgarcia@igalia.com>
    
            [WebKit2] Plugins without a MIME Type fail to load
            https://bugs.webkit.org/show_bug.cgi?id=112834
    
            Reviewed by Benjamin Poulain.
    
            * platform/wk2/TestExpectations: Unskip
            plugins/no-mime-with-valid-extension.html.
    
    2013-04-21  Carlos Garcia Campos  <cgarcia@igalia.com>
    
            Division by zero in CSSGradientValue::addStops()
            https://bugs.webkit.org/show_bug.cgi?id=114807
    
            Reviewed by Dean Jackson.
    
            * fast/gradients/css3-color-stop-invalid-expected.html: Added.
            * fast/gradients/css3-color-stop-invalid.html: Added.
    
    2013-04-21  Commit Queue  <rniwa@webkit.org>
    
            Unreviewed, rolling out r148851.
            http://trac.webkit.org/changeset/148851
            https://bugs.webkit.org/show_bug.cgi?id=114935
    
            EFL Buildbot reports fail after gardening on r148851
            (Requested by gyuyoung on #webkit).
    
            * platform/efl/TestExpectations:
    
    2013-04-21  Dirk Schulze  <krit@webkit.org>
    
            [Part 4] Parse the custom() function in -webkit-filter: parse the matN() functions
            https://bugs.webkit.org/show_bug.cgi?id=71444
    
            Reviewed by Dean Jackson.
    
            Added tests for mat2 to mat4 parameter functions on custom fiter function and
            parameter descriptor.
    
            * css3/filters/custom-with-at-rule-syntax/parsing-custom-function-invalid-expected.txt:
            * css3/filters/custom-with-at-rule-syntax/parsing-custom-function-valid-expected.txt:
            * css3/filters/custom-with-at-rule-syntax/parsing-parameters-property-invalid-expected.txt:
            * css3/filters/custom-with-at-rule-syntax/parsing-parameters-property-valid-expected.txt:
            * css3/filters/custom-with-at-rule-syntax/script-tests/parsing-custom-function-invalid.js:
            * css3/filters/custom-with-at-rule-syntax/script-tests/parsing-custom-function-valid.js:
            * css3/filters/custom-with-at-rule-syntax/script-tests/parsing-parameters-property-invalid.js:
            * css3/filters/custom-with-at-rule-syntax/script-tests/parsing-parameters-property-valid.js:
    
    2013-04-21  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    
            Unreviewed, EFL gardening. Remove test cases which are expected failed, but passed now.
    
            * platform/efl/TestExpectations:
    
    2013-04-21  Oliver Hunt  <oliver@apple.com>
    
            JS Lexer and Parser should be more informative when they encounter errors
            https://bugs.webkit.org/show_bug.cgi?id=114924
    
            Reviewed by Filip Pizlo.
    
            Update test results to cover improved error messages.
    
            * fast/js/kde/parse-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T1-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T2-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T3-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T4-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T5-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T1-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T2-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T3-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T4-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T1-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T10-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T2-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T3-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T4-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T5-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T6-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T7-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T8-expected.txt:
            * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T9-expected.txt:
            * sputnik/Conformance/13_Function_Definition/S13_A7_T3-expected.txt:
    
    2013-04-21  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Regression(r148672): fast/events/touch/frame-hover-update.html fails
            https://bugs.webkit.org/show_bug.cgi?id=114912
    
            Reviewed by Allan Sandfeld Jensen.
    
            Fix relative path to js-test-post.js in fast/events/touch/frame-hover-update.html.
    
            * fast/events/touch/frame-hover-update.html:
    
    2013-04-20  Mark Lam  <mark.lam@apple.com>
    
            Rewrite fast/workers/dedicated-worker-lifecycle.html to verify that
            the GC is able to reclaim orphaned Workers on a timely basis.
            https://bugs.webkit.org/show_bug.cgi?id=114893.
    
            Reviewed by Geoffrey Garen.
    
            * fast/workers/resources/dedicated-worker-lifecycle.js:
            (orphanAllWorkers):
            (runTests.worker.onmessage):
            (runTests):
            (orphanedWorkerExited.worker.onmessage):
            (orphanedWorkerExited):
            * fast/workers/resources/worker-util.js:
            (waitUntilThreadCountMatchesCondition):
            (waitUntilThreadCountMatches):
            (waitUntilThreadCountDoesNotExceed):
    
    2013-04-21  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Mark css1/cascade/cascade_order.html as flaky.
    
            * platform/efl/TestExpectations:
    
    2013-04-21  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Mark several webgl tests as flaky.
            Mark several ref tests as failing (started between r148032 and r148102).
    
            * platform/efl-wk2/TestExpectations:
            * platform/efl/TestExpectations:
    
    2013-04-21  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    
            Unreviewed EFL gardening.
    
            Mark websocket tests as flaky and webgl/conformance/rendering/gl-scissor-test.html
            as failing.