GNOME Bugzilla – Bug 437232
Firefox: create a 'skip container' navigation task
Last modified: 2007-05-11 19:56:06 UTC
Create a skip container navigation task. The trick to this problem is knowing what to stop on because the item may need to be skipped ie. layout table. One idea may be to go to the end of the container that you want to skip and use 'review next item'.
The suggested fix worked great. The code is short enough to list here: def execute(self, **kwargs): self.stopNow() lastunder = self.getLastAccUnder() if lastunder == self.task_por: sayError(text=_('no container to skip')) else: self.moveToPOR(lastunder) self.doTask('review next item') Added to repository.