Changeset 258640 in webkit


Ignore:
Timestamp:
Mar 18, 2020 9:07:25 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

Default attachment icon is not necessarily the same as the file attachment icon whose extension is ".dat"
https://bugs.webkit.org/show_bug.cgi?id=209210
<rdar://problem/59606671>

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-03-18
Reviewed by Daniel Bates.

Ensure that the default attachment icon is the one which iconForFileType
returns for "public.data" icon.

  • fast/attachment/attachment-default-icon-expected.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r258639 r258640  
     12020-03-18  Said Abou-Hallawa  <sabouhallawa@apple.com>
     2
     3        Default attachment icon is not necessarily the same as the file attachment icon whose extension is ".dat"
     4        https://bugs.webkit.org/show_bug.cgi?id=209210
     5        <rdar://problem/59606671>
     6
     7        Reviewed by Daniel Bates.
     8
     9        Ensure that the default attachment icon is the one which iconForFileType
     10        returns for "public.data" icon.
     11
     12        * fast/attachment/attachment-default-icon-expected.html:
     13
    1142020-03-18  Antoine Quint  <graouts@apple.com>
    215
  • trunk/LayoutTests/fast/attachment/attachment-default-icon-expected.html

    r221944 r258640  
    22<html>
    33<body>
    4 <attachment id="attachment" title="  "></attachment>
    5 <script>
    6 var file;
    7 if (window.internals)
    8     file = window.internals.createFile("resources/test-file.dat");
    9 
    10 document.getElementById("attachment").file = file;
    11 </script>
     4<attachment id="attachment" title="  " type="public.data"></attachment>
    125</body>
    136</html>
Note: See TracChangeset for help on using the changeset viewer.