Title: [203593] branches/safari-602-branch

Diff

Modified: branches/safari-602-branch/LayoutTests/ChangeLog (203592 => 203593)


--- branches/safari-602-branch/LayoutTests/ChangeLog	2016-07-22 09:38:59 UTC (rev 203592)
+++ branches/safari-602-branch/LayoutTests/ChangeLog	2016-07-22 09:50:10 UTC (rev 203593)
@@ -1,5 +1,22 @@
 2016-07-22  Babak Shafiei  <[email protected]>
 
+        Merge r203511. rdar://problem/27474031
+
+    2016-07-21  Chris Dumez  <[email protected]>
+
+            playsInline IDL attribute has the wrong casing
+            https://bugs.webkit.org/show_bug.cgi?id=160029
+            <rdar://problem/27474031>
+
+            Reviewed by Jon Lee.
+
+            Update test to use the correct case.
+
+            * media/video-playsinline-expected.txt:
+            * media/video-playsinline.html:
+
+2016-07-22  Babak Shafiei  <[email protected]>
+
         Merge r203520. rdar://problem/26964090
 
     2016-07-21  Myles C. Maxfield  <[email protected]>

Modified: branches/safari-602-branch/Source/WebCore/ChangeLog (203592 => 203593)


--- branches/safari-602-branch/Source/WebCore/ChangeLog	2016-07-22 09:38:59 UTC (rev 203592)
+++ branches/safari-602-branch/Source/WebCore/ChangeLog	2016-07-22 09:50:10 UTC (rev 203593)
@@ -1,5 +1,29 @@
 2016-07-22  Babak Shafiei  <[email protected]>
 
+        Merge r203511. rdar://problem/27474031
+
+    2016-07-21  Chris Dumez  <[email protected]>
+
+            playsInline IDL attribute has the wrong casing
+            https://bugs.webkit.org/show_bug.cgi?id=160029
+            <rdar://problem/27474031>
+
+            Reviewed by Jon Lee.
+
+            Fix case from video.playsinline to video.playsInline in order to match
+            the specification:
+            - https://html.spec.whatwg.org/multipage/embedded-content.html#the-video-element:dom-video-playsinline
+
+            It still reflects the "playsinline" content attribute though, as per
+            the specification:
+            - https://html.spec.whatwg.org/multipage/embedded-content.html#dom-video-playsinline
+
+            No new tests, updated existing test.
+
+            * html/HTMLVideoElement.idl:
+
+2016-07-22  Babak Shafiei  <[email protected]>
+
         Merge r203545. rdar://problem/26964090
 
     2016-07-21  Myles C. Maxfield  <[email protected]>

Modified: branches/safari-602-branch/Source/WebCore/html/HTMLVideoElement.idl (203592 => 203593)


--- branches/safari-602-branch/Source/WebCore/html/HTMLVideoElement.idl	2016-07-22 09:38:59 UTC (rev 203592)
+++ branches/safari-602-branch/Source/WebCore/html/HTMLVideoElement.idl	2016-07-22 09:50:10 UTC (rev 203593)
@@ -33,7 +33,7 @@
     readonly attribute unsigned long videoHeight;
     [Reflect, URL] attribute DOMString poster;
 
-    [Reflect] attribute boolean playsinline;
+    [Reflect=playsinline] attribute boolean playsInline;
     readonly attribute boolean webkitSupportsFullscreen;
     readonly attribute boolean webkitDisplayingFullscreen;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to