Steps to reproduce: 1. Open Accessibility-native.pptx in Impress 2. Right click on image 3. Description -> Text Alternative Expected Results: 1. Text Alternative = "ImAltText" Actual Results: 1. Text Alternative = Blank Key OOXML: <p:cNvPr title="ImAltText" name="ImName" id="2" descr="ImDescW"> like Bug 148952 we do not handle title="ImAltText" on import.
Created attachment 185138 [details] Example PPTX with Alt Text Tag
*** Bug 153404 has been marked as a duplicate of this bug. ***
On pc Debian x86-64 with master sources updated today, I could reproduce this. Not only it doesn't import the alternative text but also, it doesn't export the attribute. Indeed, when unzipping the file, we can see in ppt/slides/slide1.xml there's this at the beginning: <p:cNvPr id="2" name="ImName" descr="ImDescW" title="ImAltText"> but after having exported the file, the "title" attribute is removed. Regina: I may be wrong but wrong but it seems it's because oox::drawingml::Shape doesn't have this attribute.
FILESAVE Steps to reproduce from Bug 153404 1. In Impress save Accessibility.odp as pptx (2007-365) 2. Close 3. Open pptx 4. Right click on image 5. Description -> Text Alternative Expected Results: 1. Text Alternative = "ImAltText" Actual Results: 1. Text Alternative = Blank the exported OOXML reads: <p:cNvPr name="ImName" id="41" descr="ImDesc"/> when it should read: <p:cNvPr title="ImAltText" name="ImName" id="2" descr="ImDescW"> like Bug 148952 we do not handle title="ImAltText" on import.